程序集 Microsoft.Extensions.Hosting, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60
namespace Microsoft.Extensions.Hosting
{
public static class Host
{
public static IHostBuilder CreateDefaultBuilder(){}
public static IHostBuilder CreateDefaultBuilder(string[] args){}
}
}
有哪位大佬知道 上面这两个方法的源码在哪里?
我在GitHub上找了半天找不到。
在 https://github.com/dotnet/runtime 仓库中,具体实现代码在 src/libraries/Microsoft.Extensions.Hosting/src/Host.cs
非常感谢
真是好隐蔽啊,我也一直没找到。
上面大神发的源码感觉不全,似乎是多层包装了,无意中找到一个:https://github.com/dotnet/extensions/blob/release/3.1/src/Hosting/Hosting/src/Host.cs
这个直接就有具体实现