admin管理员组

文章数量:1352175

Moved from .NET 4.8 to .NET 8. Updated from IHostingEnvironment to IWebHostEnvironment, but it is not adding the correct configuration:

public Startup(IWebHostEnvironment env)
{
    var builder = new ConfigurationBuilder()
        .SetBasePath(env.ContentRootPath)
        .AddJsonFile("configuration.json", false, true)
        .AddJsonFile($"configuration.{env.EnvironmentName}.json", true)
        .AddJsonFile("settings.json", true, true)
        .AddJsonFile($"settings.{env.EnvironmentName}.json", true)
        .AddEnvironmentVariables();

    _environment = env;
    Configuration = builder.Build();
}

本文标签: environmentUsing ASPNET Core39s ConfigurationBuilderStack Overflow