AutoInjectRegister 1.8.2

dotnet add package AutoInjectRegister --version 1.8.2
                    
NuGet\Install-Package AutoInjectRegister -Version 1.8.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AutoInjectRegister" Version="1.8.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AutoInjectRegister" Version="1.8.2" />
                    
Directory.Packages.props
<PackageReference Include="AutoInjectRegister" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AutoInjectRegister --version 1.8.2
                    
#r "nuget: AutoInjectRegister, 1.8.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=AutoInjectRegister&version=1.8.2
                    
Install AutoInjectRegister as a Cake Addin
#tool nuget:?package=AutoInjectRegister&version=1.8.2
                    
Install AutoInjectRegister as a Cake Tool

AutoInjectRegister

Auto register classes and interfaces for dependency injection. Add the auto inject attribute to the top of any class file to be marked for auto injection helping you identify the scope of each class just by looking at the class file.

Adding Auto Inject to DI

Add to your program or startup file

 builder.Services.AutoInjectRegisterServices();

Alternatively, if you would like to be more specific with which assembly you would like added, add a type from an assembly you want added. This will only register files in that assembly, so be aware that it won't take everything plus that assembly. It will only take the assembly specified.

  builder.Services.AutoInjectRegisterServices(typeof(IDbReader), typeof(ICache), typeof(IProxy));

If you would like to use exclude specific types you can pass in an options class into the register services method. You can use the InclusionType enum to specify you want to ONLY use the types passed into types to scan.

public class AutoInjectorOptions
{
    public IEnumerable<Type> TypesToScan { get; set; } = [];
    public IEnumerable<Type> TypesToExclude { get; set; } = [];
    public InclusionType InclusionType { get; set; } = InclusionType.All;
}

You can then pass the options in as function.

builder.Services.AutoInjectRegisterServices(options =>
    {
        options.TypesToScan = [typeof(MyClass), typeof(YourClass)];
        options.InclusionType = InclusionType.TypesToScanOnly;
    });

Or create the object yourself.

builder.Services.AutoInjectRegisterServices(
    new AutoInjectorOptions 
    {
        TypesToScan = [typeof(MyClass), typeof(YourClass)],
        TypesToExclude = [typeof(ExclusionClass), typeof(ExclusionClass)] 
    }
);

Register your classes

Add the auto inject attribute to your classes in two different ways.

No paramter attribute

You will have access to seven attributes, including the base.

[AutoInjectsSingleton]
[AutoInjectScoped]
[AutoInjectTransient]

[AutoInjectTryAddSingleton]
[AutoInjectTryAddScoped]
[AutoInjectTryAddTransient]

[AutoInject] // Defaults to transient and add

You can implement them like so.

[AutoInjectTransient]
internal class ExampleTransientClass : IExampleTransientInterface
{
    ...
}

[AutoInjectTryAddScoped]
internal class ExampleScopedClass : IExampleScopedInterface
{
    ...
}
    
[AutoInject]
internal class SingletonClassOnly
{
    ...
}

Whilst you can implement multiple attributes of different lifetimes, avoid doing so as it could cause confusion of the lifetime of the service. If a class does have multiple attributes it will be registered in the order of the enum, ServiceLifetime.

[AutoInjectScoped]
[AutoInjectsSingleton] // This should be what it is registered as
[AutoInjectTransient]
internal class ExampleMultipleServiceClass : IExampleMultipleServiceInterface
{
    ...
}

Base attribute with a parameter

You can use the base class, the benefit being you will get compiler issues if you use the attribute multiple times.

[AutoInject(ServiceLifetime.Scoped, AddType.TryAdd)]
internal class ScopedTestClass : ScopedTestInterface
{
    ...
}

// class only
[AutoInject] // Defaults to transient and add
internal class TransientTestClassOnly
{
    ...
}

Using TryAddService instead of AddService

In the case you want to try add the service instead of add, you can use the addtype enum as a parameter for the base attribute.

[AutoInject(ServiceLifetime.Scoped, AddType.TryAdd)]
internal class ScopedTestClass : ScopedTestInterface
{
    ...
}

Enums Types Available

Service lifetimes

This is just from the microsoft enum, ServiceLifetime.

Transient,
Scoped,
Singleton

AddTypes

Add,
TryAdd

InclusionTypes

All,
TypesToScanOnly
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.8.2 138 5/19/2025
1.8.1 91 5/18/2025
1.8.0 140 4/23/2025
1.7.1 183 4/14/2025
1.7.0 167 4/9/2025
1.6.0 106 12/22/2024
1.5.2 106 11/18/2024
1.5.1 100 11/18/2024
1.5.0 103 11/16/2024
1.4.0 101 11/15/2024
1.3.0 107 9/22/2024
1.2.0 113 9/14/2024
1.1.0 110 9/3/2024
1.0.1 125 9/2/2024
1.0.0 105 9/2/2024

Minor change to use return yield and reversed order to not need stack.