Fix InterfaceName + update Properties, add private Fields

This commit is contained in:
Stef Heyenrath
2021-07-24 09:23:02 +02:00
parent 36fdd645b1
commit afe1710816
12 changed files with 98 additions and 56 deletions
@@ -6,10 +6,12 @@ namespace SourceGeneratorInterface
{
public static void Main()
{
PersonProxy p = new PersonProxy(new Person());
IPerson p = new PersonProxy(new Person());
p.Name = "test";
p.Add("x");
p.Void();
p.MyNamedTypeSymbol = null;
p.Compilation = null;
//p.Add("x");
//p.Void();
Console.WriteLine(System.Text.Json.JsonSerializer.Serialize(p));
}
}