Auto-Register
7.3.1
See the version list below for details.
dotnet add package Auto-Register --version 7.3.1
NuGet\Install-Package Auto-Register -Version 7.3.1
<PackageReference Include="Auto-Register" Version="7.3.1" />
paket add Auto-Register --version 7.3.1
#r "nuget: Auto-Register, 7.3.1"
// Install Auto-Register as a Cake Addin #addin nuget:?package=Auto-Register&version=7.3.1 // Install Auto-Register as a Cake Tool #tool nuget:?package=Auto-Register&version=7.3.1
Auto-Register
Overview
The Auto-Register package simplifies service registration for ASP.NET Core applications by automatically discovering and registering services based on custom attributes. This package eliminates the need for manually adding services in Program.cs, supports multiple service lifetimes, and ensures no duplicate registrations occur.
With Auto-Register, services are identified using the RegisterAttribute and are automatically registered as self, interface, or base class implementations.
Installation
To install Auto-Register, add it to your project using the NuGet Package Manager or .NET CLI:
Using Package Manager:
Install-Package Auto-Register
Using .NET CLI:
dotnet add package Auto-Register
Usage
Once the Auto-Register package is installed, you can easily use it in your ASP.NET Core project to auto-register services.
Step 1: Mark Services with RegisterAttribute
Services that need to be registered must be decorated with the RegisterAttribute. This attribute takes the ServiceLifetime (Singleton, Scoped, or Transient) as a parameter.
Example:
using AutoRegister;
// Singleton service
[Register(ServiceLifetime.Singleton)]
public class MySingletonService : IMySingletonService
{
// Implementation
}
// Scoped service
[Register(ServiceLifetime.Scoped)]
public class MyScopedService : IMyScopedService
{
// Implementation
}
// Transient service
[Register(ServiceLifetime.Transient)]
public class MyTransientService : IMyTransientService
{
// Implementation
}
Step 2: Register Services in Program.cs
In your ASP.NET Core application, use the AddAutoregister extension method to automatically register services from a given assembly.
If using ASP.NET Core 6.0+ with a minimal hosting model (Program.cs), add the auto-registration in the ConfigureServices section
using AutoRegister;
using System.Reflection;
var builder = WebApplication.CreateBuilder(args);
// Automatically register services marked with the RegisterAttribute
builder.Services.AddAutoregister(Assembly.GetExecutingAssembly());
var app = builder.Build();
app.Run();
Components
RegisterAttribute
This attribute is used to mark classes for automatic registration. It defines the lifetime of the service (Singleton, Scoped, or Transient) via the constructor.
Constructor:
public RegisterAttribute(ServiceLifetime lifetime)
Parameter:
ServiceLifetime lifetime: Specifies the lifetime of the service to be registered (Singleton, Scoped, or Transient)
Example:
[Register(ServiceLifetime.Singleton)]
public class MyService : IMyService
{
// Implementation
}
Key Features
1. Automatic Service Discovery and Registration:
Services marked with the RegisterAttribute are automatically discovered and registered based on their lifetime (Singleton, Scoped, or Transient)
2. Interface and Base Class Registration:
Classes can be registered not only as themselves but also as their interfaces and abstract base classes.
3. Self-Registration:
Classes that do not implement interfaces or inherit from abstract base classes can still be self-registered in the service collection.
4. Duplicate Prevention:
Services are registered only once, preventing multiple registrations of the same type.
5. Lifetime Control:
Service lifetime is controlled via the RegisterAttribute, making it easy to specify whether a service should be Singleton, Scoped, or Transient
Advanced Usage
Registering External Assemblies
If you want to register services from multiple assemblies, you can pass those assemblies to the AddAutoregister method. For example:
using AutoRegister;
using System.Reflection;
var builder = WebApplication.CreateBuilder(args);
// Register services from multiple assemblies
builder.Services.AddAutoregister(AppDomain.CurrentDomain.GetAssemblies());
var app = builder.Build();
app.Run();
Ignoring Specific Services
Currently, all services marked with the RegisterAttribute in the provided assemblies will be registered. If you want to exclude certain services, you would need to manually intervene before the registration process.
Example Scenario
Consider an ASP.NET Core application where you want to automatically register several services:
[Register(ServiceLifetime.Singleton)]
public class AuthService : IAuthService
{
// Singleton service for authentication
}
[Register(ServiceLifetime.Scoped)]
public class ShoppingCartService : IShoppingCartService
{
// Scoped service for managing shopping carts
}
[Register(ServiceLifetime.Transient)]
public class PaymentService : IPaymentService
{
// Transient service for handling payments
}
// Program.cs (ASP.NET Core 6+)
var builder = WebApplication.CreateBuilder(args);
// Automatically register services
builder.Services.AddAutoregister(Assembly.GetExecutingAssembly());
var app = builder.Build();
app.Run();
In this example:
AuthService will be registered as a Singleton
ShoppingCartService will be registered as a Scoped
PaymentService will be registered as a Transient
The services will automatically be resolved and injected where required, without needing to manually specify them in Program.cs
Conclusion
The Auto-Register NuGet package provides a powerful and flexible way to manage service registration in ASP.NET Core. By automating service discovery and registration, it reduces boilerplate code and helps maintain clean and maintainable service registration logic, especially in large projects with many services.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.6 | 95 | 10/8/2024 |
8.0.5 | 84 | 10/8/2024 |
8.0.4 | 75 | 10/8/2024 |
8.0.3 | 81 | 10/8/2024 |
8.0.2 | 84 | 10/8/2024 |
8.0.1 | 80 | 10/8/2024 |
7.8.5 | 88 | 10/5/2024 |
7.7.1 | 84 | 10/4/2024 |
7.6.2 | 89 | 10/4/2024 |
7.5.2 | 82 | 10/3/2024 |
7.3.1 | 89 | 10/2/2024 |
7.2.2 | 89 | 10/2/2024 |
7.2.1 | 88 | 9/30/2024 |
7.1.2 | 74 | 9/30/2024 |
6.0.6 | 75 | 9/30/2024 |
6.0.5 | 78 | 9/28/2024 |
6.0.4 | 83 | 9/28/2024 |
5.2.1 | 84 | 9/28/2024 |
4.2.1 | 85 | 9/28/2024 |
3.2.2 | 87 | 9/28/2024 |
3.1.1 | 100 | 9/28/2024 |
2.2.1 | 93 | 9/28/2024 |
2.1.0 | 87 | 9/28/2024 |
1.0.0 | 85 | 9/28/2024 |