我的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并重新开始。没有运气
配置警告消失,但应用程序无法启动
答案 0 :(得分:2)
使用此App.config
文件:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>