// Decompiled with JetBrains decompiler
// Type: Microsoft.Extensions.Hosting.GenericHostWebHostBuilderExtensions
// Assembly: Microsoft.AspNetCore.Hosting, Version=3.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60
// MVID: 1BCE6D72-7E5F-4A20-AD29-79535E6D1346
// Assembly location: C:\Program Files\dotnet\packs\Microsoft.AspNetCore.App.Ref\3.1.3\ref\netcoreapp3.1\Microsoft.AspNetCore.Hosting.dll
using Microsoft.AspNetCore.Hosting;
using System;
namespace Microsoft.Extensions.Hosting
{
public static class GenericHostWebHostBuilderExtensions
{
public static IHostBuilder ConfigureWebHost(
this IHostBuilder builder,
Action<IWebHostBuilder> configure);
}
}
我感觉这是设置的原因,具体我不清楚
我现在还没找到好的破解版
因为这些dll仅仅指示refonly
的dll(https://docs.microsoft.com/en-us/dotnet/standard/assembly/reference-assemblies),只有签名,没有实现的。
包含实现的dll在另外一个目录里面。