Shurunov Andrei

Results 2 issues of Shurunov Andrei

What do you think about exposing SourceGenerator and IncrementalGenerator though the separate package? E. g. if I wanted to write another source generator that writes `[Register(typeof(SomeController), Scope.InstancePerResolution)]` and `IContainer` for...

**Code for reproduction:** ``` internal interface IService{} where T : IAnotherService class ServiceImplementation : IService where T : IAnotherService { } internal interface IAnotherService{} interface IService1 {} class ServiceImplementation :...