Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore
5.0.1
See the version list below for details.
dotnet add package Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore --version 5.0.1
NuGet\Install-Package Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore -Version 5.0.1
<PackageReference Include="Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore" Version="5.0.1" />
paket add Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore --version 5.0.1
#r "nuget: Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore, 5.0.1"
// Install Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore as a Cake Addin #addin nuget:?package=Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore&version=5.0.1 // Install Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore as a Cake Tool #tool nuget:?package=Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore&version=5.0.1
Rougamo.DI
中文 | English
Rougamo.DI
provides a set of IoC/DI extensions for Rougamo that enhance the IoC/DI interaction experience when using Rougamo.
Available Extensions
Package Name | Description |
---|---|
Rougamo.Extensions.DependencyInjection.Microsoft | Uses the official DependencyInjection and integrates with HttpContext to return the correct scoped IServiceProvider |
Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore | Uses Autofac and integrates with HttpContext to return the correct scoped ILifetimeScope |
Rougamo.Extensions.DependencyInjection.Autofac | Uses Autofac , suitable for non-AspNetCore projects |
Rougamo.Extensions.DependencyInjection.Abstractions | The base abstraction package for all other packages |
Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions | The base abstraction package for all AspNetCore-related packages |
Versioning Guidelines
All version numbers follow the Semantic Versioning (SemVer) format
- The version numbers of the two foundational abstraction packages start from
1.0.0
and increase incrementally:Rougamo.Extensions.DependencyInjection.Abstractions
Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions
- For Microsoft official DI extension packages, the major version matches the corresponding official package (e.g.,
Microsoft.Extensions.*
):Rougamo.Extensions.DependencyInjection.Microsoft
- For Autofac extension packages, the major version matches the corresponding official
Autofac
package:Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore
Rougamo.Extensions.DependencyInjection.Autofac
Rougamo.Extensions.DependencyInjection.Microsoft
Quick Start
Rougamo.Extensions.DependencyInjection.Microsoft
depends on DependencyInjection.StaticAccessor
. The initialization of the startup project is completed via DependencyInjection.StaticAccessor
. For different types of project initialization, please refer to DependencyInjection.StaticAccessor
.
For the startup project, reference DependencyInjection.StaticAccessor.Hosting
:
dotnet add package DependencyInjection.StaticAccessor.Hosting
For non-startup projects, reference Rougamo.Extensions.DependencyInjection.Microsoft
:
dotnet add package Rougamo.Extensions.DependencyInjection.Microsoft
// Register Rougamo (Note: If you're not using IoC/DI functionality, Rougamo does not require registration by default)
public static void Main(string[] args)
{
// 1. Initialization. This example uses a generic host; for other project types, please refer to the readme of the DependencyInjection.StaticAccessor project.
var builder = Host.CreateDefaultBuilder();
builder.UsePinnedScopeServiceProvider(); // Initialization completed with this single step
var host = builder.Build();
host.Run();
}
// Retrieve and use an IServiceProvider instance in an aspect type
public class TestAttribute : MoAttribute
{
public override void OnEntry(MethodContext context)
{
var xxx = context.GetService<IXxx>();
}
}
Rougamo.Extensions.DependencyInjection.Autofac.AspNetCore
Quick Start
// Register Rougamo (Note: Rougamo does not require registration if you do not need IoC/DI features)
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
builder.Host
.UseServiceProviderFactory(new AutofacServiceProviderFactory())
.ConfigureContainer<ContainerBuilder>(builder =>
{
builder.RegisterRougamoAspNetCore();
});
// Registering IHttpContextAccessor is also required
builder.Services.AddHttpContextAccessor();
}
// Accessing ILifetimeScope in an aspect
public class TestAttribute : MoAttribute
{
public override void OnEntry(MethodContext context)
{
// Use the extension method GetAutofacCurrentScope to obtain the ILifetimeScope instance
var scope = context.GetAutofacCurrentScope();
// Utilize ILifetimeScope
var xxx = scope.Resolve<IXxx>();
}
}
Rougamo.Extensions.DependencyInjection.Autofac
// Register Rougamo (Note: Rougamo does not require registration if you do not need IoC/DI features)
public static void Main(string[] args)
{
var builder = Host.CreateDefaultBuilder();
builder
.UseServiceProviderFactory(new AutofacServiceProviderFactory())
.ConfigureContainer<ContainerBuilder>(builder =>
{
builder.RegisterRougamo();
});
}
// Accessing ILifetimeScope in an aspect
public class TestAttribute : MoAttribute
{
public override void OnEntry(MethodContext context)
{
// Use the extension method GetAutofacCurrentScope to obtain the ILifetimeScope instance
var scope = context.GetAutofacCurrentScope();
// Utilize ILifetimeScope
var xxx = scope.Resolve<IXxx>();
}
}
Usage in Framework Projects
If your project is an older WebForm, WinForm, WPF, or similar project that does not use the Microsoft.Extensions.*
packages, you can directly call the RegisterRougamo
extension method when initializing the ContainerBuilder
.
var builder = new ContainerBuilder();
builder.RegisterRougamo();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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. |
.NET Core | netcoreapp3.1 is compatible. |
-
.NETCoreApp 3.1
- Autofac (>= 5.0.0 && < 6.0.0)
- Autofac.Extensions.DependencyInjection (>= 6.0.0 && < 7.0.0)
- Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions (>= 1.0.1)
- Rougamo.Extensions.DependencyInjection.Autofac (>= 5.0.1)
-
net5.0
- Autofac (>= 5.0.0 && < 6.0.0)
- Autofac.Extensions.DependencyInjection (>= 6.0.0 && < 7.0.0)
- Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions (>= 1.0.1)
- Rougamo.Extensions.DependencyInjection.Autofac (>= 5.0.1)
-
net6.0
- Autofac (>= 5.0.0 && < 6.0.0)
- Autofac.Extensions.DependencyInjection (>= 6.0.0 && < 7.0.0)
- Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions (>= 1.0.1)
- Rougamo.Extensions.DependencyInjection.Autofac (>= 5.0.1)
-
net7.0
- Autofac (>= 5.0.0 && < 6.0.0)
- Autofac.Extensions.DependencyInjection (>= 6.0.0 && < 7.0.0)
- Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions (>= 1.0.1)
- Rougamo.Extensions.DependencyInjection.Autofac (>= 5.0.1)
-
net8.0
- Autofac (>= 5.0.0 && < 6.0.0)
- Autofac.Extensions.DependencyInjection (>= 6.0.0 && < 7.0.0)
- Rougamo.Extensions.DependencyInjection.AspNetCore.Abstractions (>= 1.0.1)
- Rougamo.Extensions.DependencyInjection.Autofac (>= 5.0.1)
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 |
---|---|---|
8.0.1 | 95 | 9/18/2024 |
8.0.1-preview-1726209340 | 86 | 9/13/2024 |
8.0.0 | 123 | 8/22/2024 |
7.0.1 | 84 | 9/18/2024 |
7.0.1-preview-1726208693 | 80 | 9/13/2024 |
7.0.0 | 136 | 8/22/2024 |
6.0.1 | 91 | 9/18/2024 |
6.0.1-preview-1726208008 | 79 | 9/13/2024 |
6.0.0 | 108 | 8/21/2024 |
5.0.1 | 90 | 9/18/2024 |
5.0.1-preview-1726207262 | 78 | 9/13/2024 |
5.0.0 | 110 | 8/21/2024 |
4.0.1 | 92 | 9/18/2024 |
4.0.1-preview-1726205254 | 79 | 9/13/2024 |
4.0.0 | 118 | 8/21/2024 |
4.0.0-priview-1724248067 | 103 | 8/21/2024 |
4.0.0-priview-1724239435 | 100 | 8/21/2024 |
4.0.0-priview-1724238077 | 101 | 8/21/2024 |
4.0.0-preview-1724276951 | 95 | 8/21/2024 |
4.0.0-preview-1724276233 | 96 | 8/21/2024 |
4.0.0-preview-1724259035 | 103 | 8/21/2024 |
- [[#2](https://github.com/inversionhourglass/Rougamo.DI/issues/2)] 修复并行任务创建scope可能导致获取到错误的scope
- AspNetCore项目从默认不支持嵌套scope更改为默认支持嵌套scope
---