应用程序配置无效 - 应用程序无法启动

时间:2015-03-04 08:27:42

标签: c# .net wpf

我的wpf应用程序的app.config中有配置警告。

我的整个app.config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns="schema URL">
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
    </startup>
</configuration>

我试过了:

How to remove warning 'The 'configuration' element is not declared.' Visual Studio C#

The configuration element is not declared

并且如其中一个答案中所述,尝试重启VS并重新开始。没有运气

enter image description here

配置警告消失,但应用程序无法启动

1 个答案:

答案 0 :(得分:2)

使用此App.config文件:

<?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
        </startup>
    </configuration>