Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

v1.0.0-rc.3

Choose a tag to compare

@bsdayo bsdayo released this 09 Apr 18:03
· 53 commits to dev since this release

Flandre.Framework

  • 补充在 IPluginCollection 中注入服务的能力:
builder.Plugins.Services.AddScoped();
//                 ^ IServiceCollection

这在写扩展方法的时候很实用:

public static void AddExample(this IPluginCollection plugins)
{
    plugins.Services.AddSingleton<ExampleService>();
    plugins.Add<ExamplePlugin>();
}