configure which .NET framework to use for a console application

G

Guest

hello,

i have on a w2k3 server the .NET v1.1 and .NET V2.0 installed.

Where can i configure the consoleapplication which framework is to be used?.

thanks
 
G

Guest

the console application is build with VS2003 (.NET 1.0)

On the runtime-enviroment-server - there are installed frameworks.
v1.0xxx, v1.1.4322 and v2.0.50215


What configuration file can i use for a console applcation
to configure that the consoleapplication to run with v1.1 or v2.0

For a web - applcation i have that configure file...

thanks
 
P

Patrice

This is that then. Using a myapp.exe.config file should do the job. It
requires also likely some testing (in particular there are some known
breaking changes between 1.1 (VS.NET 2003 builds 1.1 application) and 2.0.

Not also that you have nothing special to do unless you specifically want to
run your 1.1 application using .NET 2.0 (by design an application will run
against the .NET framework version it was build for).
 
G

Guest

Patrice, thanks for your help.


Patrice said:
This is that then. Using a myapp.exe.config file should do the job. It
requires also likely some testing (in particular there are some known
breaking changes between 1.1 (VS.NET 2003 builds 1.1 application) and 2.0.

Not also that you have nothing special to do unless you specifically want to
run your 1.1 application using .NET 2.0 (by design an application will run
against the .NET framework version it was build for).
 

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