Install of programs using framework 2 on computer using framework

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

Thanks for your help!
 
J

Jeroen Vandezande

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

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
 
G

Guest

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top