ASP.NET Core appsettings.json无法加载正确的设置 [英] ASP.NET Core appsettings.json not loading the correct settings

查看:111
本文介绍了ASP.NET Core appsettings.json无法加载正确的设置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的Azure中,我有 ENVIRONMENT = Development ,但是我的设置没有加载.

In my Azure I have ENVIRONMENT = Development, but my settings don't load.

public static IConfiguration Configuration { get; } = new ConfigurationBuilder()
       .SetBasePath(Directory.GetCurrentDirectory())
       .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) // reloadOnChange Whether the configuration should be reloaded if the file changes.
       .AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("ENVIRONMENT")}.json", optional: true, reloadOnChange: true)
       .AddEnvironmentVariables() // Environment Variables override all other, ** THIS SHOULD ALWAYS BE LAST
       .Build();

但是它始终使用默认设置.

But it always uses the default settings.

推荐答案

请更新以下行:

.SetBasePath(env.ContentRootPath)

这篇关于ASP.NET Core appsettings.json无法加载正确的设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆