Использование пользовательских сред в ASP.NET Core - PullRequest
0 голосов
/ 30 января 2019

Мои файлы appsettings работают, я вижу, что они используются в соответствии с тем, какой профиль запуска я использую, однако мой профиль localhost не работает, потому что, кажется, его нет в реальной платформе, которую я использую.В любом случае можно добавить пользовательский, такой как "localhost"?

My appsettings files does work I see them being used according to which launching profile I use however,,,

My Localhost profile doesn't work because it doesn't seems to exist in the actual Framework I use. Is there anyway to add a custom one such as

Редактировать:

enter image description here

Мой CSS не загружается

enter image description here

Спасибо!

1 Ответ

0 голосов
/ 30 января 2019

В вашем Program.cs добавьте вызов к config.AddJsonFile():

    public static void Main(string[] args)
    {
        CreateWebHostBuilder(args).Build().Run();
    }

    public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
        WebHost.CreateDefaultBuilder(args)
            .ConfigureAppConfiguration((hostingContext, config) =>
            {
                config.AddJsonFile("appsettings.Localhost.json", optional: true);
            })
            .UseStartup<Startup>();
...