64 bit compilation in Visual Studio 2003

D

Deepshikha Sinha

Hi,
I have a .Net 1.1 web application developed in Visual Studio 2003 compiled in a 32-bit mode. The OS my machine is Windows XP which is again using a 32 bit processor. How can I compile the same application in Visual Studio 2003 in 64 bit compilation mode ??

Plz help.. Its really urgent
 
A

Anthony Jones

in message
Hi,
I have a .Net 1.1 web application developed in Visual Studio 2003 compiled
in a 32-bit mode. The OS my machine is Windows XP which is again using a
32 bit processor. How can I compile the same application in Visual Studio
2003 in 64 bit compilation mode ??

Plz help.. Its really urgent

You can't.

First of all .NET applications do not care about bitness. The compilies IL
is agnostic to 32 to 64 bit.

Its the framework which actually runs the IL and compilies to native code
that runs on the client that utlimately determinse bitness.

In order to runs a 1.1 based application in 64 bit you would need to the
destination machine to have a 64 bit version of the 1.1 framework installed.
Unfortunately no such thing exists. The first Framework to be released in
both 32 and 64 bit is 2.0. Hence you will need to rebuild your app using
the 2.0 framework.
 

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