AutoInterface
AutoInterface copied to clipboard
C# interface-to-member source generator
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)]...
``` interface IPrintableComplex { void Print(); void PrintComplex(); } public class SimplePrinter { public void Print() { Console.WriteLine("OK"); } } public partial class Person : IPrintableComplex { [BeaKona.AutoInterface(typeof(IPrintableComplex))] private readonly...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 1 to 4.1.7. Release notes Sourced from actions/download-artifact's releases. v4.1.7 What's Changed Update @actions/artifact dependency by @bethanyj28 in actions/download-artifact#325 Full Changelog: https://github.com/actions/download-artifact/compare/v4.1.6...v4.1.7 v4.1.6 What's Changed updating @actions/artifact...