AutoWire.DI 1.0.7

dotnet add package AutoWire.DI --version 1.0.7                
NuGet\Install-Package AutoWire.DI -Version 1.0.7                
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="AutoWire.DI" Version="1.0.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AutoWire.DI --version 1.0.7                
#r "nuget: AutoWire.DI, 1.0.7"                
#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.
// Install AutoWire.DI as a Cake Addin
#addin nuget:?package=AutoWire.DI&version=1.0.7

// Install AutoWire.DI as a Cake Tool
#tool nuget:?package=AutoWire.DI&version=1.0.7                

AutoWire.DI

AutoWire.DI is a lightweight dependency injection library for .NET applications that simplifies the process of registering services automatically. By utilizing attribute-based service configuration, AutoWire.DI helps developers reduce boilerplate code and ensures a clean and maintainable codebase.

Features

  • Automatic Service Registration: Automatically discovers and registers services decorated with the AutoInject attribute, minimizing manual setup.
  • Attribute-Based Configuration: Allows developers to mark classes for injection with a simple attribute, enhancing readability.
  • Flexible Assembly Scanning: Easily register services from specified assemblies, ensuring that all desired services are included.
  • Support for Keyed Registration: Allows you to register services with specific keys, enabling the resolution of different implementations for the same service type based on the provided key.
  • Service Lifetime Management: Supports different service lifetimes (e.g., Singleton, Transient, Scoped) for precise control over service instantiation. If no lifetime is specified, the default service lifetime is set to Scoped.
  • Seamless Integration: Designed to work smoothly with Microsoft.Extensions.DependencyInjection, making integration into existing applications straightforward.

Installation

You can install AutoWire.DI via NuGet Package Manager. Run the following command in your .NET project:

dotnet add package AutoWire.DI

Usage

1. Define Your Services

Decorate your service classes with the AutoInject attribute to mark them for automatic registration. You can specify a key and the desired service lifetime. If no lifetime is specified, the service will default to Scoped .

using AutoWire.DI.Attributes;

[AutoInject]
public class MyService : IMyService
{
    public void DoWork()
    {
        // Implementation
    }
}

[AutoInject("exampleKey", ServiceLifetime.Singleton)]
public class MyKeyedService : IMyService
{
    public void DoWork()
    {
        // Implementation
    }
}

2. Register Your Services

In your application's startup configuration, call the RegisterAutoInjectableServices method to automatically register services from the specified assembly.

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        // Register all services in the calling assembly that are marked with AutoInject
        services.RegisterAutoInjectableServices();
        
        // Register an alternative implementation with a different key
        services.AddTransient<IMyService, MyAlternativeService>("Alternative");
    }
}
Resolving Keyed Services

To resolve a service using its key, you can retrieve it from the service provider as shown:

var serviceProvider = services.BuildServiceProvider();
var myService = serviceProvider.GetService<IMyService>("exampleKey");
var alternativeService = serviceProvider.GetService<IMyService>("Alternative");

3. Resolve Services in Your Application

You can then resolve your services using the built service provider.

public class SomeController
{
    private readonly IMyService _myService;

    public SomeController(IMyService myService)
    {
        _myService = myService; // Automatically injected by the DI container
    }

    public void Execute()
    {
        _myService.DoWork();
    }
}

public class SomeController
{
    private readonly IMyService _myService;

    public SomeController([FromKeyedServices("exampleKey")] IMyService myService)
    {
        _myService = myService; // Automatically injected by the DI container
    }

    public void Execute()
    {
        _myService.DoWork();
    }
}

Contributing

Contributions to AutoWire.DI are welcome! If you have suggestions, bug fixes, or improvements, please submit an issue or a pull request. We appreciate your help in making this project better!

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgments

  • Thanks to the community for their continual support and contributions.
  • Inspired by various dependency injection principles and frameworks in the .NET ecosystem.
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
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.0.7 0 12/27/2024
1.0.6 37 12/26/2024