配置文件未初始化

本文关键字:初始化 配置文件 | 更新日期: 2023-09-27 17:57:31

当我运行应用程序时,我会收到以下消息:

类型的未处理异常

System.Configuration.ConfigurationErrors中发生异常

GridEmulator.exe附加信息:配置系统无法初始化

这是我的应用程序配置文件:

<?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();

有人能帮忙吗?

配置文件未初始化

上述xml中缺少

测试配置定义。定义它解决了问题。谢谢Steve。