Running your application with a newer DotNet Framework
From MetaSharp
Article Author(s): Niels Van Vliet, Audric Thevenet
All Rights Reserved.
Let's say your application name is: foo.exe
Create a file named foo.exe.config containing:
<?xml version="1.0" encoding="Windows-1252"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727" />
<supportedRuntime version="v2.0.50110" />
<supportedRuntime version="v1.1.4322" />
<supportedRuntime version="v1.0.3705" />
<requiredRuntime version="v1.0.3705" />
</startup>
</configuration>
I don't know how yet, but I think modifying this we should acheive our goal. It's under investigation :)