DependencyInjection.SourceGenerator.LightInject
1.1.2
See the version list below for details.
dotnet add package DependencyInjection.SourceGenerator.LightInject --version 1.1.2
NuGet\Install-Package DependencyInjection.SourceGenerator.LightInject -Version 1.1.2
<PackageReference Include="DependencyInjection.SourceGenerator.LightInject" Version="1.1.2" />
paket add DependencyInjection.SourceGenerator.LightInject --version 1.1.2
#r "nuget: DependencyInjection.SourceGenerator.LightInject, 1.1.2"
// Install DependencyInjection.SourceGenerator.LightInject as a Cake Addin #addin nuget:?package=DependencyInjection.SourceGenerator.LightInject&version=1.1.2 // Install DependencyInjection.SourceGenerator.LightInject as a Cake Tool #tool nuget:?package=DependencyInjection.SourceGenerator.LightInject&version=1.1.2
DependencyInjection.SourceGenerator
Register services using attributes instead of registering in code.
Usage
Add the "Register" attribute to the class you want to register. The attribute takes a type and a lifetime. The type is the type you want to register and the lifetime is the lifetime of the service. The lifetime is optional and defaults to Transient.
Microsoft.Extensions.DependencyInjection
namespace RootNamespace.Services;
public interface IExampleService
{
string GetExample();
}
public interface IAnotherService
{
string GetAnother();
}
[Register(ServiceName = "ServiceName", Lifetime = Lifetime.Singleton)]
public class ExampleService : IExampleService
{
public string GetExample()
{
return "Example";
}
}
[Decorate]
public class KeyedService : IExampleService
{
public string GetExample()
{
return "Keyed";
}
}
[Decorator]
public class ServiceDecorator : IExampleService
{
private readonly IExampleService _exampleService;
public ServiceDecorator(IExampleService exampleService)
{
_exampleService = exampleService;
}
public string GetExample()
{
return _exampleService.GetExample();
}
}
[Register<IAnotherService>]
public class MultipleInterfacesService : IExampleService, IAnotherService
{
public string GetExample()
{
return "MultipleInterfaces";
}
public string GetAnother()
{
return "Another";
}
}
Generates a class ServiceCollectionExtensions Assuming the project is named MyProject, the generated method will be named AddMyProject.
// <auto-generated/>
#pragma warning disable
#nullable enable
namespace RootNamespace;
using global::Microsoft.Extensions.DependencyInjection;
[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
public static class ServiceCollectionExtensions
{
public static global::Microsoft.Extensions.DependencyInjection.IServiceCollection AddMyProject(this global::Microsoft.Extensions.DependencyInjection.IServiceCollection services)
{
services.AddKeyedSingleton<global::RootNamespace.Services.IExampleService, global::RootNamespace.Services.ExampleService>("ServiceName");
services.Decorate<global::RootNamespace.Services.IExampleService, global::RootNamespace.Services.ServiceDecorator>();
services.AddTransient<global::RootNamespace.Services.IAnotherService, global::RootNamespace.Services.MultipleInterfacesService>();
return services;
}
}
Usage
var services = new ServiceCollection();
services.AddMyProject();
### LightInject
```csharp
[Register(ServiceName = "ServiceName", Lifetime = Lifetime.Singleton)]
public class ExampleService : IExampleService
{
public string GetExample()
{
return "Example";
}
}
public interface IExampleService
{
string GetExample();
}
Generates a class CompositionRoot
public class CompositionRoot : ICompositionRoot
{
public static void Compose(IServiceRegistry serviceRegistry)
{
serviceRegistry.Register<IExampleService, ExampleService>("ServiceName", new PerContainerLifetime());
}
}
If you already have a class CompositionRoot defined, the generated class will be made partial. Remeber to make your CompositionRoot partial as well. It will also call a method RegisterServices on the existing CompositionRoot class (this must be defined).
public partial class CompositionRoot : ICompositionRoot
{
public static void Compose(IServiceRegistry serviceRegistry)
{
RegisterServices(serviceRegistry);
serviceRegistry.Register<IExampleService, ExampleService>("ServiceName", new PerContainerLifetime());
}
}
The final existing CompositionRoot class must look like this:
public partial class CompositionRoot
{
public void RegisterServices(IServiceRegistry serviceRegistry)
{
// Register services here
}
}
Lifetime
The lifetime is an enum with the following values:
- Transient
- Scoped
- Singleton
Misc
Current only works with LightInject.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- DependencyInjection.SourceGenerator.Contracts (>= 1.1.2)
- LightInject (>= 6.6.4)
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 |
---|---|---|
2.0.0 | 111 | 8/30/2024 |
1.6.0 | 196 | 2/14/2024 |
1.5.1 | 191 | 1/15/2024 |
1.5.0 | 130 | 1/15/2024 |
1.4.3 | 151 | 1/10/2024 |
1.4.2 | 120 | 1/10/2024 |
1.4.1 | 132 | 1/9/2024 |
1.4.0 | 130 | 1/9/2024 |
1.3.3 | 149 | 1/8/2024 |
1.3.2 | 114 | 1/8/2024 |
1.3.1 | 115 | 1/8/2024 |
1.3.0 | 131 | 1/8/2024 |
1.2.2 | 147 | 1/8/2024 |
1.2.2-alpha3 | 87 | 1/8/2024 |
1.2.2-alpha2 | 125 | 1/8/2024 |
1.2.1 | 112 | 1/5/2024 |
1.2.1-alpha6 | 164 | 1/5/2024 |
1.2.1-alpha5 | 92 | 1/5/2024 |
1.2.1-alpha2 | 94 | 1/5/2024 |
1.2.1-alpha1 | 130 | 1/5/2024 |
1.2.0 | 111 | 1/5/2024 |
1.1.2 | 130 | 1/5/2024 |
1.1.1 | 97 | 1/5/2024 |
1.1.0 | 155 | 1/5/2024 |
1.0.2 | 140 | 1/5/2024 |
1.0.1 | 126 | 1/4/2024 |
1.0.0 | 137 | 1/4/2024 |