Running your application with a newer DotNet Framework

From MetaSharp
Revision as of 21:27, 13 December 2008 by Audric (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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 :)

Personal tools