配置文件未初始化

时间:2016-07-19 07:13:21

标签: c# winforms

当我运行我的应用程序时,我收到此消息:

  

类型

的未处理异常      

System.Configuration.ConfigurationErrorsException发生在

中      

GridEmulator.exe其他信息:配置系统无法初始化

这是我的App.Config文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.VisualStudio.TestTools.UITest.Extension" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>
  <appSettings>
    <add key="VM1" value="192.168.1.2" />
    <add key="VM2" value="MyPC" />
  </appSettings>
   <TestConfig>
    <DinoConfig Alpha="" Beta="" Gamma="" Delta="">
      <Dino Zelta="" Platform="" Rho="" iota="" />
     </DinoConfig>
  </TestConfig>
</configuration>

这是导致问题的C#代码的一部分:

private string[] vmStrings;
 vmStrings = ConfigurationManager.AppSettings.AllKeys
               .Where(key => key.StartsWith("VM"))
               .Select(key => ConfigurationManager.AppSettings[key])
               .ToArray();

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

上面提到的xml中缺少测试配置定义。定义解决了这个问题。谢谢史蒂夫。