DependencyInjection.SourceGenerators is an advanced C# source generator specifically crafted for the Microsoft.Extensions.DependencyInjection library. It automates the process of service registration, eliminating the need for manual or reflection-based registration in .NET applications.
- Automatic Registration: ARI generates code to automatically register services in the DI container using custom attributes.
- Compile-Time Efficiency: Operates at compile time, offering a more efficient alternative to reflection or manual updates in ServiceCollection.
- Simplified Dependency Management: Greatly reduces the complexity of managing dependencies, especially in larger projects.
- Attribute-Based Configuration: Services are registered through easy-to-use attributes, streamlining the process.
- Interface Registration Support: Allows for clean and concise registration of services through their interfaces.
- Multi-Assembly Support: Facilitates service registration across multiple assemblies, enhancing modularity.
- Keyed Service Support: Enables registration of multiple implementations of the same interface with unique keys, allowing for more nuanced dependency resolution.
DependencyInjection.SourceGenerators is available as a NuGet package. You can install it using the following command:
dotnet add package DependencyInjection.SourceGenerators
Or, add the package reference manually in your project file:
<PackageReference Include="DependencyInjection.SourceGenerators" Version="1.0.1" />
Decorate your classes with one of the following attributes to register them in the DI container:
[Singleton]
[Scoped]
[Transient]
Example:
[Singleton]
public class MyService;
This will generate:
services.AddSingleton<MyService>();
You can also register services through their interfaces:
[Singleton]
public class MyService : IMyService;
This will generate:
services.AddSingleton<IMyService, MyService>();
To use Keyed Services, you can annotate your service implementations with a special attribute indicating the key:
[Singleton("myKey")]
public class MyService : IMyService;
This will generate:
services.AddKeyedSingleton<IMyService, MyService>("myKey");
DependencyInjection.SourceGenerators supports multi-assembly scenarios. For example, with assemblies MyProject.Main, MyProject.Services, and MyProject.Data, configure your ServiceCollection as follows:
var serviceCollection = new ServiceCollection();
serviceCollection.AddServicesFromMainAssembly();
serviceCollection.AddServicesFromServicesAssembly();
serviceCollection.AddServicesFromDataAssembly();
serviceCollection.BuildServiceProvider();
DependencyInjection.SourceGenerators introduces an innovative and streamlined approach to service registration in .NET applications by leveraging assembly-level attributes. This feature allows developers to define their dependency injection mappings at a single, centralized location, enhancing readability and maintainability.
- Centralized Configuration: Define all your DI mappings in one place, making it easier to manage and review.
- Declarative Syntax: A clear and concise way to express service registrations, improving code clarity.
- Reduced Boilerplate: Minimizes repetitive code across different parts of the application.
You can register your services directly at the assembly level using attributes like Singleton, Transient, and Scoped. This method is particularly useful for large projects with numerous services, as it centralizes the DI configuration.
Example:
[assembly: Singleton<One>, Transient<ITwo, Two>, Scoped<Three>("myKey")]
In this example:
One
is registered as a singleton. This means a single instance of One will be created and shared across the application.Two
is registered as a transient implementation of the ITwo interface. This means a new instance of Two will be created each time ITwo is requested.Three
is registered as a scoped service with a key "myKey". This means an instance of Three will be created for each scope (like a web request in ASP.NET Core) and it can be uniquely identified or resolved using the key "myKey". This configuration is declared at the assembly level, applying to the entire assembly where it's defined. It provides a centralized and streamlined way to manage dependency injection across your application.
To utilize this feature, simply place the assembly attribute in any file within your project, typically at the top of the file for visibility. The DependencyInjection.SourceGenerators tool will scan these attributes during compilation and generate the necessary DI registration code.
This approach, as described, offers a more organized and efficient way to handle dependency injection in .NET applications, especially beneficial in complex projects with a large number of services.
DependencyInjection.SourceGenerators is released under the MIT License, offering freedom and flexibility for both personal and commercial use under the terms of MIT.