Add support for Property and Method attributes (#49)

* .

* .

* P en E

* .
This commit is contained in:
Stef Heyenrath
2022-12-17 13:36:41 +01:00
committed by GitHub
parent a1a283c8bb
commit e22cec1b62
19 changed files with 535 additions and 31 deletions
@@ -1,6 +1,3 @@
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ProxyInterfaceSourceGeneratorTests.Source
{
public class PersonExtends : Human
@@ -12,13 +9,13 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
public static string StaticString { get; set; } = "500";
public string Name { get; set; }
public string Name { get; set; } = null!;
public string? StringNullable { get; set; }
public long? NullableLong { get; }
public object @object { get; set; }
public object @object { get; set; } = null!;
public void Void()
{