我最近升级到Vista x64,突然之间,任何.NET程序集都没有读取我的machine.config appSettings块。
在configSections之后,在C:\ Windows \ Microsoft.NET \ Framework \ v2.0.50727 \ CONFIG \ machine.config中的configProtectedData之前,我有:
<appSettings>
<add key="foo" value="blah"/>
</appSettings>
<system.runtime.remoting>
<customErrors mode="Off"/>
</system.runtime.remoting>
必须通过以管理员身份运行Notepad ++来保存它,因为它已被锁定,可能是有充分理由的。在SnippetCompiler或VS .NET 2008中运行以下代码:
foreach(var s in ConfigurationManager.AppSettings.AllKeys)
{
Console.WriteLine(s);
}
AppSettingsReader asr = new AppSettingsReader();
Console.WriteLine(asr.GetValue("foo", typeof(string)));
写出没有密钥并因以下异常而失败:
---
The following error occurred while executing the snippet:
System.InvalidOperationException: The key 'foo' does not exist in the appSettings configuration section.
at System.Configuration.AppSettingsReader.GetValue(String key, Type type)
at MyClass.RunSnippet()
at MyClass.Main()
---
我编写的应用程序使用machine.config作为后备,用于找出用户应该在哪个环境中运行,如果在app.config中找不到它,那么我想避免重写我的应用程序弄清楚应该像2000年和XP那样工作的东西。
答案 0 :(得分:8)
使用以下代码行解决它:
ConfigurationManager.OpenMachineConfiguration().FilePath
返回:
C:\Windows\Microsoft.NET\Framework64\v2.0.50727\Config\machine.config
而不是:
C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config
忘了我现在正在使用64位。在正确的配置文件中添加appSettings部分解决了这个问题。