I was able to test it only in the .NET 4.0 window and it won’t run outside the box (could not find the version error at runtime), but your answer made me look for these configuration files, and I found a way to make it work on 3.5, when it is available, but back to 4.0. This is the code if someone else has a problem:
<?xml version="1.0"?> <configuration> <startup useLegacyV2RuntimeActivationPolicy="false"> <supportedRuntime version="v2.0.50727" /> <supportedRuntime version="v4.0" /> </startup> </configuration>
source share