EasilyNET.AutoDependencyInjection 3.24.923.232

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasilyNET.AutoDependencyInjection --version 3.24.923.232                
NuGet\Install-Package EasilyNET.AutoDependencyInjection -Version 3.24.923.232                
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="EasilyNET.AutoDependencyInjection" Version="3.24.923.232" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasilyNET.AutoDependencyInjection --version 3.24.923.232                
#r "nuget: EasilyNET.AutoDependencyInjection, 3.24.923.232"                
#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 EasilyNET.AutoDependencyInjection as a Cake Addin
#addin nuget:?package=EasilyNET.AutoDependencyInjection&version=3.24.923.232

// Install EasilyNET.AutoDependencyInjection as a Cake Tool
#tool nuget:?package=EasilyNET.AutoDependencyInjection&version=3.24.923.232                
EasilyNET.AutoDependencyInjection
  • 新增KeyedService支持,可在 DependencyInjectionAttribute 中看到对应的 ServiceKey 属性,用于标识服务的 Key 值.
  • 新增 WPF 项目支持,理论上也支持 WinForm 项目,但是没有测试,使用时请注意.(仅限于 .NET 的项目,不支持 .NET Framework)
  • 经测试是支持 WinUI 3 类型的项目的,但是需要注意的是,WinUI 3 项目的启动方式和 WPF 项目不一样,需要自行调整.
中断性变更
  • 移除使用 IScopedDependency, ISingletonDependency, ITransientDependency 接口的方式,仅使用特性注入的方式.保持设计简洁性.
变化

由于新增了 WPF 项目支持,所以在使用时需要注意以下几点: WPF 项目中,使用依赖注入,需要在 App.xaml.cs 中添加如下代码:

[STAThread]
public static void Main(string[] args)
{
    using var host = CreateHostBuilder(args).Build();
    host.InitializeApplication();
    host.Start();
    var app = new App();
    app.InitializeComponent();
    app.MainWindow = host.Services.GetRequiredService<MainWindow>();
    app.MainWindow.Visibility = Visibility.Visible;
    app.Run();
}

private static IHostBuilder CreateHostBuilder(string[] args)
{
    return Host.CreateDefaultBuilder(args)
               .ConfigureServices(sc => { sc.AddApplicationModules<AppServiceModules>(); });
}

同时还需要调整 .csproj 文件,添加如下代码:

<ItemGroup>
	<ApplicationDefinition Remove="App.xaml" />
	<Page Include="App.xaml" />
</ItemGroup>

再在 WPF 项目中,使用依赖注入,需要在 AppServiceModules.cs 中添加如下代码: 该类的使用方法和 Web 项目中的 AppWebModule.cs 一样.

[DependsOn(typeof(DependencyAppModule))]
internal sealed class AppServiceModules : AppModule { }

在 WPF 项目中,使用依赖注入,需要在 MainWindow.xaml.cs 中继承接口或者添加 DependencyInjection 特性如下代码:

// 使用特性配置注入信息
[DependencyInjection(ServiceLifetime.Singleton, AddSelf = true, SelfOnly = true)]
public partial class MainWindow : Window

注意事项
  • 需要注意的是,在 WPF 项目中,请将 AddSelf 属性设置为 true,否则会出现服务无法找到的问题,因为默认会注册实现类的父类,导致使用 host.Services.GetRequiredService<MainWindow>() 的方式无法找到服务.WinForm 项目中,没有测试,但是理论上也是一样的.
  • 由于新增 WPF 项目支持,所以调整了 IApplicationBuilder 为 IHost,因此 WEB 项目中的使用方式有细微的变化.
// 之前的使用方式
IApplicationBuilder app = context.GetApplicationBuilder();
// 现在的使用方式
IApplicationBuilder app = context.GetApplicationHost() as IApplicationBuilder;
// 或者如下方式,根据实际情况选择
WebApplication app = context.GetApplicationHost() as WebApplication;
// 在 WPF 或者 WinForm 项目中,使用如下方式
IHost app = context.GetApplicationHost();
如何使用
  • 使用 Nuget 包管理工具添加依赖包 EasilyNET.AutoDependencyInjection
  • 使用特性注入服务
[DependencyInjection(ServiceLifetime.Singleton, AddSelf = true, SelfOnly = true)]
public class XXXService : IXXXService
{
    // TODO: do something
    Console.WriteLine("使用特性注入服务");
    ...
}
  • 3.继承 AppModule 类,然后显示加入到 AppWebModule 配置中
  • Step1.创建 CorsModule.cs
// 这里以跨域服务注册为例
/// <summary>
/// 配置跨域服务及中间件
/// </summary>
public class CorsModule : AppModule
{
    /// <summary>
    /// 注册和配置服务
    /// </summary>
    /// <param name="context"></param>
    public override void ConfigureServices(ConfigureServicesContext context)
    {
        var config = context.Services.GetConfiguration();
        var allow = config["AllowedHosts"] ?? "*";
        _ = context.Services.AddCors(c => c.AddPolicy("AllowedHosts", s => s.WithOrigins(allow.Split(",")).AllowAnyMethod().AllowAnyHeader()));
    }
    /// <summary>
    /// 注册中间件
    /// </summary>
    /// <param name="context"></param>
    public override void ApplicationInitialization(ApplicationContext context)
    {
        var app = context.GetApplicationBuilder() as IApplicationBuilder;
        _ = app.UseCors("AllowedHosts");
    }
}
  • Step2.创建 AppWebModule.cs
/**
 * 要实现自动注入,一定要在这个地方添加
 */
[DependsOn(
    typeof(DependencyAppModule),
    typeof(CorsModule)
)]
public class AppWebModule : AppModule
{
    /// <summary>
    /// 注册和配置服务
    /// </summary>
    /// <param name="context"></param>
    public override void ConfigureServices(ConfigureServicesContext context)
    {
        base.ConfigureServices(context);
        _ = context.Services.AddHttpContextAccessor();
    }
    /// <summary>
    /// 注册中间件
    /// </summary>
    /// <param name="context"></param>
    public override void ApplicationInitialization(ApplicationContext context)
    {
        base.ApplicationInitialization(context);
        var app = context.GetApplicationBuilder() as IApplicationBuilder;
        _ = app.UseAuthorization();
        // 这里可添加自己的中间件
    }
}
  • Step3.最后再 Program.cs 中添加如下内容.
// Add services to the container.
// 自动注入服务模块
builder.Services.AddApplication<AppWebModule>();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment()) _ = app.UseDeveloperExceptionPage();

// 添加自动化注入的一些中间件.
app.InitializeApplication();

app.MapControllers();

app.Run();
Product Compatible and additional computed target framework versions.
.NET 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.  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
3.24.926.184 32 9/26/2024
3.24.926.182 30 9/26/2024
3.24.926.175 30 9/26/2024
3.24.924.160 57 9/24/2024
3.24.924.133 62 9/24/2024
3.24.924.124 51 9/24/2024
3.24.924.10 73 9/23/2024
3.24.924.1 59 9/23/2024
3.24.923.234 65 9/23/2024
3.24.923.232 71 9/23/2024
3.24.923.155 70 9/23/2024
3.24.919.92 80 9/19/2024
3.24.914.125 96 9/14/2024
3.24.914.115 76 9/14/2024
3.24.914.111 81 9/14/2024
3.24.911.95 88 9/11/2024
3.24.908.215 70 9/8/2024
3.24.904.200 82 9/4/2024
3.24.828.163 113 8/28/2024
3.24.820.173 96 8/20/2024
3.24.814.92 116 8/14/2024
3.24.812.115 95 8/12/2024
3.24.802.100 54 8/2/2024
3.24.801.162 67 8/1/2024
3.24.801.160 60 8/1/2024
3.24.801.155 64 8/1/2024
3.24.801.153 62 8/1/2024
3.24.730.164 64 7/30/2024
3.24.730.91 58 7/30/2024
3.24.724.91 63 7/24/2024
3.24.718.105 80 7/18/2024
3.24.716.95 93 7/16/2024
3.24.712.94 93 7/12/2024
3.24.710.14 92 7/9/2024
3.24.709.105 107 7/9/2024
3.24.704.94 109 7/4/2024
3.24.701.90 95 7/1/2024
3.24.628.114 101 6/28/2024
3.24.627.145 100 6/27/2024
3.24.620.160 93 6/20/2024
3.24.613.115 89 6/13/2024
3.24.612.95 93 6/12/2024
3.24.528.90 93 5/28/2024
3.24.522.84 106 5/22/2024
3.24.512.213 97 5/12/2024
3.24.508.112 121 5/8/2024
2.2024.428.71 112 4/28/2024
2.2024.427.1128 105 4/27/2024
2.2.72 114 4/14/2024
2.2.71 90 4/12/2024
2.2.8 96 4/26/2024
2.2.6 111 4/10/2024
2.2.5 120 3/26/2024
2.2.4 106 3/25/2024
2.2.3 115 3/24/2024
2.2.2 111 3/21/2024
2.2.1 107 3/20/2024
2.2.0 129 3/13/2024
2.1.9 141 2/21/2024
2.1.8 115 2/18/2024
2.1.7 126 2/16/2024
2.1.6 145 2/14/2024
2.1.5 111 2/14/2024
2.1.4 134 2/9/2024
2.1.3 110 2/8/2024
2.1.2 170 2/5/2024
2.1.1.2 216 12/26/2023
2.1.1.1 112 12/26/2023
2.1.1 121 12/25/2023
2.1.0 143 12/17/2023
2.0.11 194 12/6/2023
2.0.1 188 11/15/2023
2.0.0 146 11/14/2023
1.9.1 159 11/1/2023
1.9.0 125 10/19/2023
1.9.0-preview2 293 10/12/2023
1.9.0-preview1 103 10/12/2023
1.8.9 176 10/11/2023
1.8.8 169 10/11/2023
1.8.7-rc2 134 9/21/2023
1.8.7-rc1 122 9/12/2023
1.8.6 165 8/31/2023
1.8.5 765 8/25/2023
1.8.4 156 8/24/2023
1.8.3 181 8/23/2023
1.8.2 256 8/22/2023
1.8.1 193 8/18/2023
1.8.0 181 8/15/2023
1.7.9 217 8/11/2023
1.7.8 163 8/11/2023
1.7.7 175 8/10/2023
1.7.6 188 8/9/2023
1.7.5 236 8/9/2023
1.7.4 275 8/3/2023
1.7.3 180 8/1/2023
1.7.2 176 7/31/2023
1.7.1 173 7/27/2023
1.7.0 184 7/25/2023
1.6.9 168 7/25/2023
1.6.8 182 7/24/2023
1.6.7 196 7/20/2023
1.6.6 197 7/19/2023
1.6.5 173 7/19/2023
1.6.4 177 7/17/2023
1.6.3 152 7/17/2023
1.6.2 206 7/12/2023
1.6.1 218 6/30/2023
1.6.0 150 6/26/2023
1.5.9 164 6/22/2023
1.5.8 164 6/15/2023
1.5.7.1 171 6/14/2023
1.5.7 168 6/14/2023
1.5.6.2 215 6/7/2023
1.5.6.1 150 6/7/2023
1.5.6 150 6/7/2023
1.5.5.2 208 5/26/2023
1.5.5.1 167 5/26/2023
1.5.5 168 5/26/2023
1.5.4.4 179 5/25/2023
1.5.4.3 220 5/23/2023
1.5.4.2 278 5/17/2023
1.5.4.1 176 5/16/2023
1.5.4 253 5/11/2023
1.5.3 174 5/11/2023
1.5.2 113 5/10/2023
1.5.1 112 5/10/2023
1.5.0 151 5/6/2023
1.4.0 108 5/5/2023
1.3.9 122 4/23/2023
1.3.8.6 104 4/23/2023
1.3.8.5 115 4/21/2023
1.3.8.1 181 4/12/2023
1.3.8 120 4/11/2023
1.3.7 144 4/9/2023
1.3.6.3 199 4/1/2023
1.3.6.2 115 3/31/2023
1.3.6.1 113 3/31/2023
1.3.6 89 3/31/2023
1.3.5 109 3/30/2023
1.3.4.1 177 3/29/2023
1.3.4 121 3/28/2023
1.3.3 98 3/28/2023
1.3.2 133 3/26/2023
1.3.1 187 3/22/2023
1.3.0 124 3/21/2023
1.2.0 108 3/21/2023
1.1.0 127 3/17/2023
1.0.9 117 3/15/2023
1.0.8 122 3/15/2023
1.0.7 102 3/15/2023
1.0.6 119 3/13/2023
1.0.5 126 3/13/2023
1.0.4 104 3/13/2023
1.0.3 192 2/26/2023
1.0.2 114 2/26/2023
1.0.1 115 2/23/2023
1.0.0 286 2/20/2023