With Visual Studio 2013 Express on a machine with .NET 4.5 and .NET 4.5.1 installed, a newly created WPF
project will have the following App.config
file.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
</configuration>
Note that the combination of values in the App.config
is not found in the table that describes valid <supportedRuntime>
attribute values. Link to the MSDN table for supportedRuntime attribute values
Does this matter to the functioning of the application?