使用环境变量覆盖 App.config 值
Override App.config value with an environment variable
我有一个打印 App.config 值的 C# 控制台程序。我可以从环境变量中覆盖这个值吗?
示例App.config:
<appSettings>
<add key="TestKey" value="Foo"/>
</appSettings>
示例代码:
Console.WriteLine($"Key: {ConfigurationManager.AppSettings["TestKey"]}");
我尝试只设置密钥名称,但这显然不起作用:
C:\> set TestKey=Bar
C:\> ConsoleApp2.exe
Key: Foo
ConfigurationManager
class 不会为您执行此操作,它只会从您的应用配置中读取。要解决此问题,您可以使用一个函数来获取变量并使用它,而不是直接调用 ConfigurationManager.AppSettings
。无论如何,这是一个很好的做法,因为这意味着您可以轻松地将您的配置移动到 JSON 文件或数据库中,并且您不需要更新旧方法的每次使用。
例如:
public string GetSetting(string key)
{
var value = Environment.GetEnvironmentVariable(key);
if(string.IsNullOrEmpty(value))
{
value = ConfigurationManager.AppSettings[key];
}
return value;
}
在 netcore (aspnetcore) 中,您可以覆盖环境中的设置
https://github.com/dotnet/AspNetCore.Docs/issues/11361#issuecomment-471680877
需要使用前缀 ASPNETCORE_youvariable(ASPNETCORE - 默认值)。
在 .net 4.7.1 中,您可以使用 ConfigurationBuilders 来完成此操作。
我有一个打印 App.config 值的 C# 控制台程序。我可以从环境变量中覆盖这个值吗?
示例App.config:
<appSettings>
<add key="TestKey" value="Foo"/>
</appSettings>
示例代码:
Console.WriteLine($"Key: {ConfigurationManager.AppSettings["TestKey"]}");
我尝试只设置密钥名称,但这显然不起作用:
C:\> set TestKey=Bar
C:\> ConsoleApp2.exe
Key: Foo
ConfigurationManager
class 不会为您执行此操作,它只会从您的应用配置中读取。要解决此问题,您可以使用一个函数来获取变量并使用它,而不是直接调用 ConfigurationManager.AppSettings
。无论如何,这是一个很好的做法,因为这意味着您可以轻松地将您的配置移动到 JSON 文件或数据库中,并且您不需要更新旧方法的每次使用。
例如:
public string GetSetting(string key)
{
var value = Environment.GetEnvironmentVariable(key);
if(string.IsNullOrEmpty(value))
{
value = ConfigurationManager.AppSettings[key];
}
return value;
}
在 netcore (aspnetcore) 中,您可以覆盖环境中的设置 https://github.com/dotnet/AspNetCore.Docs/issues/11361#issuecomment-471680877
需要使用前缀 ASPNETCORE_youvariable(ASPNETCORE - 默认值)。
在 .net 4.7.1 中,您可以使用 ConfigurationBuilders 来完成此操作。