未声明C#Visual Studio 2012 Express配置元素

时间:2013-08-08 09:12:56

标签: configuration initialization element

我有以下问题,但我无法找到足够的东西来解决它。

在调试我的应用程序之前,我收到一条警告,指出未声明配置元素。该应用程序编译并正常工作。我最近尝试在配置部分添加连接字符串并将其拉回到应用程序中。然后,当我试图访问它时,我得到一个正确的错误"配置系统无法初始化"

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
   <configSections />
   <startup>
      <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
   </startup>
   <system.net>
      <defaultProxy useDefaultCredentials="true" />
   </system.net>
   <system.serviceModel>
      <bindings>two basichttpbindings here</bindings>
      <client>two endpoints here that bind with the basic httpbindings above. This is irrelevant as it was added even after the problem appeared</client>
   </system.serviceModel>
</configuration>

到目前为止,没有人在论坛中提供足够的答案。有什么改变或有人知道与此相关的任何事情吗?

提前谢谢

0 个答案:

没有答案