Registrator.Net
3.0.0
dotnet add package Registrator.Net --version 3.0.0
NuGet\Install-Package Registrator.Net -Version 3.0.0
<PackageReference Include="Registrator.Net" Version="3.0.0" />
paket add Registrator.Net --version 3.0.0
#r "nuget: Registrator.Net, 3.0.0"
// Install Registrator.Net as a Cake Addin #addin nuget:?package=Registrator.Net&version=3.0.0 // Install Registrator.Net as a Cake Tool #tool nuget:?package=Registrator.Net&version=3.0.0
Registrator.Net
A simple yet effective auto registration tool for dotnet
Table of contents
Notes
Doesn't support automatic registration of generic types, you will have to register them manually.
About
Registrator.Net is a simple auto registration tool for dotnet.
I have been trying to find a simple tool to register my internal dependencies and didn't find any that I liked, so I decided to create my own.
Who is it for?
Registrator.Net is intended for developers who want something simple that just works.
It is not designed to deal with every case, but the simple ones, the ones you will be doing 99% of the time.
Getting Started
With Contracts implementation
Install-Package Registrator.Net
Tag classes, records and structs with any of the following attributes:
- AutoRegisterType
- AutoRegisterTypeAndInterfaces
- AutoRegisterInterfaces
Then in your Program.cs or Startup.cs, call services.AutoRegisterTypesInAssemblies(assembly1,assembly2,assembly3...);
If you want to skip the registration of types that implement a certain interface from a certain assembly, you can call
services.AutoRegisterTypesInAssemblies(new RegistratorConfiguration()
{
Assemblies = [typeof(ConcreteType).Assembly],
ExcludedAssemblies = [typeof(IRequestHandler<>).Assembly,typeof(IMediator).Assembly]
});
By default all registered types are registered as ServiceLifetime.Scoped
, but you can change it by passing a ServiceLifetime
as a parameter of the attribute.
You can also add keyed services if you use the Key
property of the attribute.
License
Logo
Logo Provided by Vecteezy
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.