quickwire
quickwire copied to clipboard
Attribute-based dependency injection for .NET.
Results
2
quickwire issues
Sort by
recently updated
recently updated
newest added
Hi It would be quite useful to add some `[ServiceIgnore]` attribute to skip corner cases. Things like complex factories or open generic types can and should be handled manually.
```csharp [RegisterService(ServiceLifetime.Scoped)] [InjectAllInitOnlyProperties] public abstract class BaseScope { public IScopeDataStore ScopeDataStore { get; init; } } public abstract class BaseScope2 : BaseScope { public IScopeDataStore2 ScopeDataStore2 { get; init; }...