键 'LocalizedPerfCounter' 在 appSettings 配置部分不存在
The key 'LocalizedPerfCounter' does not exist in the appSettings configuration section
我有一个使用 .net 2.0 在 VB.Net 中编码的桌面应用程序,然后多次升级 VS,最新的框架是 VS 2015 的 3.5。
在应用程序启动时,我注意到诊断工具中的异常被静默捕获
appSettings 配置部分中不存在密钥 'LocalizedPerfCounter'。
解决此问题的任何想法,因为这是我分发的应用程序。
在 this link 上找到了答案,似乎与 app.config 文件中缺少的应用程序设置有关。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="LocalizedPerfCounter" value="true" />
</appSettings>
</configuration>
我需要在 configSections 部分之后添加 appSettings 部分。
我有一个使用 .net 2.0 在 VB.Net 中编码的桌面应用程序,然后多次升级 VS,最新的框架是 VS 2015 的 3.5。
在应用程序启动时,我注意到诊断工具中的异常被静默捕获
appSettings 配置部分中不存在密钥 'LocalizedPerfCounter'。
解决此问题的任何想法,因为这是我分发的应用程序。
在 this link 上找到了答案,似乎与 app.config 文件中缺少的应用程序设置有关。
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="LocalizedPerfCounter" value="true" />
</appSettings>
</configuration>
我需要在 configSections 部分之后添加 appSettings 部分。