tecAmoRaller

Results 2 issues of tecAmoRaller

Nice generator. i think, source generator must add static analysis attributes on generated code. https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/attributes/nullable-analysis For example ```csharp interface Serilog.ILogger { ... bool BindProperty(string? propertyName, object? value, bool destructureObjects, [NotNullWhen(true)]...

Nice product. If my interface has protected property, Autointerface generate invalid code ```csharp interface ITestInterface { protected int Data { get; } int DataPublic => Data + 1; } internal...