我有以下问题,我找不到任何足够的东西来解决它。
在调试我的应用程序之前,我收到一条警告,指出未声明配置元素。该应用程序可以编译并且运行良好。我最近尝试在配置部分添加一个连接字符串并将其拉回应用程序中。然后当它尝试访问它时我得到一个正确的错误说“配置系统初始化失败”
<?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>
到目前为止,没有人在论坛上提供足够的答案。有什么改变或有人知道与此相关的任何事情吗?
先感谢您