Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

app.config "Could not find schema information" after converting to Visual Studio 2010 / .Net 4.0

After upgrading my project to Visual Studio 2010 and .Net 4.0, my app.config file generates these messages upon building the project:

  • Could not find schema information for the element 'supportedRuntime'.
  • Could not find schema information for the attribute 'version'.
  • Could not find schema information for the attribute 'sku'.

Here is my entire app.config file:

<?xml version="1.0"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/>
  </startup>
</configuration>

If I create a new VS2010 project and literally copy/paste the same app.config file, I receive no such messages.

Obviously these messages are not causing any runtime problems, but they are still annoying and disconcerting.

How do I fix whatever problem is making these messages appear?

I see the answer at app.config configSections custom settings can not find schema information, but I see nowhere in the properties list to enter the path to the schema.

Thanks.

like image 841
Walt D Avatar asked Jul 04 '10 04:07

Walt D


2 Answers

I changed the schema from DotNetConfig to DotNetConfig35 and it took care of the issue. This is available in the properties of the app.config file.

Right clicking the app.config file in solution explorer gives the properties of the file, right clicking in the edit window of the app.config file itself gives the properties of the XML document.

like image 179
joe Avatar answered Nov 10 '22 05:11

joe


Are you sure the conversion went ok? Maybe the correct target framework wasn't configured. Open your project properties and check if the target framework is actually .NET Framework 4 or .NET Framework 4 Client Profile.

like image 5
Ronald Wildenberg Avatar answered Nov 10 '22 07:11

Ronald Wildenberg