64 bit compilation in Visual Studio 2003

  • Thread starter Thread starter Deepshikha Sinha
  • Start date Start date
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
 
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.
 
Back
Top