CodeOfChaos.Extensions.DependencyInjection
0.83.2
Prefix Reserved
dotnet add package CodeOfChaos.Extensions.DependencyInjection --version 0.83.2
NuGet\Install-Package CodeOfChaos.Extensions.DependencyInjection -Version 0.83.2
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.83.2" />
<PackageVersion Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.83.2" />
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" />
paket add CodeOfChaos.Extensions.DependencyInjection --version 0.83.2
#r "nuget: CodeOfChaos.Extensions.DependencyInjection, 0.83.2"
#:package CodeOfChaos.Extensions.DependencyInjection@0.83.2
#addin nuget:?package=CodeOfChaos.Extensions.DependencyInjection&version=0.83.2
#tool nuget:?package=CodeOfChaos.Extensions.DependencyInjection&version=0.83.2
⛓️💥 CodeOfChaos.Extensions.DependencyInjection ⛓️💥
CodeOfChaos.Extensions.DependencyInjection is a library that provides tools for automizing dependency injection in .NET projects. It includes source generators for automatic registration of services and attributes to facilitate DI.
Features
- Automatic Service Registration: Use source generators to automatically register services in your project.
- Custom Attributes: Define custom attributes to specify the lifetime and other details for your services.
Getting Started
Prerequisites
- .NET 9.0 or later
Installation
You can install CodeOfChaos.Extensions.DependencyInjection via NuGet Package Manager:
dotnet add package CodeOfChaos.Extensions.DependencyInjection
You can install CodeOfChaos.Extensions.DependencyInjection.Generator via NuGet Package Manager:
dotnet add package CodeOfChaos.Extensions.DependencyInjection.Generator
Usage
Define Services with Attributes
You can use the provided attributes to define services:
InjectableService: Simple attribute to register a class to the implementation which is inserted as a type generic.public interface IExampleService; [InjectableService<IExampleService>(ServiceLifetime.Singleton)] public class ExampleService : IExampleService { // ... }FactoryCreatedService: Marks the class as a service which creation depends on another injected service.- The factory service must implement
IFactoryService<>
public interface ICreatedService; [FactoryCreatedService<IExampleFactory, ICreatedService>(ServiceLifetime.Transient)] public class CreatedService : ICreatedService; // The above service is something that is created by the Factory service [InjectableService<IExampleFactory>(ServiceLifetime.Singleton)] public class ExampleFactory : IExampleFactory { public ICreatedService Create() => new CreatedService(); } public interface IExampleFactory : IFactoryService<ICreatedService>;- The factory service must implement
PooledInjectableService: Marks the class as a poolable service. This library creates a classAutoPoolableServiceunder which the class will be registered.- It uses
PooledInjectableServiceObjectPolicyto create a policy. - The poolable service must implement
PooledInjectableServiceObjectPolicy
public interface IExamplePooled : IManualPoolable; [PooledInjectableService<IExamplePooled, ExamplePooled>] public class ExamplePooled : IExamplePooled { public bool Reset() => true; }- It uses
Generate Service Registrations
The source generator will automatically create the necessary registration code. C
all the generated registration method in your Startup or Program class:
using Microsoft.Extensions.DependencyInjection;
var services = new ServiceCollection();
services.RegisterServicesFromYourAssemblyName();
Contributing
Contributions are welcome! Please fork this repository and submit a pull request.
| Product | Versions 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. |
-
net9.0
- JetBrains.Annotations (>= 2025.2.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.10)
- Microsoft.Extensions.ObjectPool (>= 9.0.10)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on CodeOfChaos.Extensions.DependencyInjection:
| Package | Downloads |
|---|---|
|
InfiniLore.InfiniBlazor
InfiniLore's Component Library |
|
|
InfiniLore.Lucide
Use Lucide in your Blazor apps |
|
|
InfiniLore.InfiniBlazor.Core.Markdown
InfiniLore's Component Library |
|
|
InfiniLore.InfiniBlazor.Core.Components
InfiniLore's Component Library |
|
|
InfiniLore.InfiniBlazor.Core.Toasting
InfiniLore's Component Library |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.83.2 | 209 | 10/22/2025 |
| 0.83.1 | 376 | 9/12/2025 |
| 0.81.1 | 285 | 9/5/2025 |
| 0.81.0 | 189 | 9/3/2025 |
| 0.80.0 | 132 | 8/23/2025 |
| 0.79.1 | 433 | 8/19/2025 |
| 0.79.0 | 163 | 8/19/2025 |
| 0.77.3 | 128 | 8/15/2025 |
| 0.75.0 | 121 | 8/15/2025 |
| 0.74.0 | 167 | 8/13/2025 |
| 0.73.0 | 173 | 8/13/2025 |
| 0.72.0 | 158 | 8/13/2025 |
| 0.71.0 | 168 | 8/13/2025 |
| 0.70.1 | 1,310 | 7/20/2025 |
| 0.70.0 | 345 | 7/20/2025 |
| 0.69.0 | 132 | 7/5/2025 |
| 0.68.0 | 615 | 5/19/2025 |
| 0.67.0 | 179 | 5/19/2025 |
| 0.66.1 | 146 | 5/9/2025 |
| 0.66.0 | 195 | 5/5/2025 |
| 0.65.0 | 229 | 4/30/2025 |
| 0.64.0 | 225 | 4/23/2025 |
| 0.63.0 | 200 | 4/23/2025 |
| 0.62.0 | 197 | 4/23/2025 |
| 0.61.0 | 199 | 4/23/2025 |
| 0.60.0 | 179 | 4/18/2025 |
| 0.59.1 | 511 | 4/18/2025 |
| 0.59.0 | 307 | 4/17/2025 |
| 0.58.0 | 223 | 4/17/2025 |
| 0.57.0 | 195 | 4/5/2025 |
| 0.56.0 | 136 | 3/29/2025 |
| 0.55.0 | 172 | 3/26/2025 |
| 0.54.0 | 509 | 3/26/2025 |
| 0.53.0 | 451 | 3/24/2025 |
| 0.52.0 | 434 | 3/24/2025 |
| 0.51.0 | 186 | 3/22/2025 |
| 0.50.0 | 188 | 3/20/2025 |
| 0.49.0 | 181 | 3/20/2025 |
| 0.48.0 | 180 | 3/18/2025 |
| 0.47.0 | 177 | 3/18/2025 |
| 0.46.0 | 174 | 3/18/2025 |
| 0.45.0 | 188 | 3/18/2025 |
| 0.44.0 | 180 | 3/17/2025 |
| 0.43.0 | 129 | 3/14/2025 |
| 0.42.3 | 253 | 3/4/2025 |
| 0.42.3-preview.1 | 190 | 3/4/2025 |
| 0.41.2 | 246 | 3/4/2025 |
| 0.41.1 | 227 | 3/3/2025 |
| 0.41.0 | 161 | 2/26/2025 |
| 0.40.1 | 163 | 2/24/2025 |
| 0.40.0 | 133 | 2/24/2025 |
| 0.39.4 | 164 | 2/20/2025 |
| 0.39.3 | 135 | 2/20/2025 |
| 0.39.2 | 144 | 2/20/2025 |
| 0.39.1 | 131 | 2/20/2025 |
| 0.39.0 | 186 | 2/18/2025 |
| 0.37.2 | 193 | 2/16/2025 |
| 0.37.1 | 134 | 2/16/2025 |
| 0.36.4 | 199 | 2/14/2025 |
| 0.36.0 | 140 | 2/14/2025 |
| 0.35.0 | 136 | 2/8/2025 |
| 0.34.0 | 151 | 2/5/2025 |
| 0.33.0 | 132 | 2/5/2025 |
| 0.32.0 | 229 | 2/1/2025 |
| 0.31.0 | 136 | 1/29/2025 |
| 0.30.0 | 137 | 1/8/2025 |
| 0.2.0 | 158 | 10/31/2024 |
| 0.1.1 | 262 | 7/1/2024 |
| 0.1.0 | 237 | 6/7/2024 |