InterfaceGenerator
InterfaceGenerator copied to clipboard
A simple source generator that creates interfaces by implementations.
maybe fix https://github.com/daver32/InterfaceGenerator/issues/16
We've started using records a lot for services because not having to write out the constructor and all the `private readonly` fields is convenient. It would be nice to have...
If possible, it would great if the nullable context (off, annotations, on) could be set per item on the interface to match whatever has been set on the implementation with...
Added ability to inherit Attribute from `GenerateAutoInterfaceAttribute`. Added `GenerateGenericAutoInterfaceAttribute` which will generate an auto interface with implementer type as a generic parameter, example: ```cs [GenerateGenericAutoInterfaceAttribute] public class A : IA...
Add // to generated files, otherwise StyleCop analyzers are executed on the generated code too