Key' LocalizedPerfCounter'在appSettings配置部分中不存在

时间:2016-09-13 22:23:59

标签: vb.net exception appsettings

我有一个使用.net 2.0在VB.Net中编码的桌面应用程序,然后多次升级VS,VS 2015的最新版本为3.5。

在应用程序启动时,我注意到诊断工具中有一个异常隐藏的异常

Key' LocalizedPerfCounter'在appSettings配置部分中不存在。

解决此问题的任何想法,因为这是我分发的应用程序。

1 个答案:

答案 0 :(得分:0)

this链接上找到答案,似乎与app.config文件中缺少的应用设置有关。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
        <add key="LocalizedPerfCounter" value="true" />
    </appSettings>
</configuration>

我需要在configSections部分之后添加appSettings部分。