Install of programs using framework 2 on computer using framework

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I use Visual Studio 2005 which needs the framework 2. I have writen a
program with forms which uses the component System.Windows.forms. Visual
Studio uses the framework 2 for this component.

The problem is that I want to install the program on a critical application
server on which I can't use the framework 2.

Is it possible to force Visual Studio to use the framework 1.1 or to
implement a compatibility?
Every one who has a solution to my problem is welcome! :o)

Thanks for your help!
 
Numberouane said:
Hi all,

I use Visual Studio 2005 which needs the framework 2. I have writen a
program with forms which uses the component System.Windows.forms. Visual
Studio uses the framework 2 for this component.

The problem is that I want to install the program on a critical
application
server on which I can't use the framework 2.

Is it possible to force Visual Studio to use the framework 1.1 or to
implement a compatibility?
Every one who has a solution to my problem is welcome! :o)

Hi,

As far as I know is Chrome the only language that can use VS2005 and target
framework 1.1 aswell as 2. (and Mono for that matter)
What you can try todo is to download the C# commandline compiler for the 1.1
framework and after the app is ready, recompile it with that compiler.



Best Regards,

Jeroen Vandezande
 
Hi Jeroen,

I have an another answer from the forum of developpez.com (a french website).
The guy said to paste these lines in the App.config:

<startup>
<supportedRuntime version="v1.1.4322" />
</startup>

I will test it first and if it does not work, i will try to adapt your
solution (I work with VB.NET).

Thanks for your help! :o)
 
Back
Top