Building 64 bit applications using Visual Studio .NET 2003

G

Guest

I have Visual Studio .NET 2003 installed on a x86 64 bit box running
Microsoft Windows Server 2003 Standard Edition with Service Pack 1 installed.
I am trying to compile my existing 32 bit code into a 64 bit application. How
can I do this? I tried to create a new configuration "Debug64", but I only
get Win32 as the only available platform. What I need is a configuration
which will also allow me to build Win64 application? How can I do this?

Please advise.
 
J

John Vottero

AbhijeetG said:
I have Visual Studio .NET 2003 installed on a x86 64 bit box running
Microsoft Windows Server 2003 Standard Edition with Service Pack 1
installed.
I am trying to compile my existing 32 bit code into a 64 bit application.
How
can I do this? I tried to create a new configuration "Debug64", but I only
get Win32 as the only available platform. What I need is a configuration
which will also allow me to build Win64 application? How can I do this?

Please advise.

..NET apps are bilingual, they're 32bit apps on a 32bit OS and they're 64bit
apps on a 64bit OS. You don't have to do anything.

Now, if you're creating an installer, you have to have one for 32bits and
one for 64bits but, they'll both install the same .NET executables.
 
D

David Connet

I have Visual Studio .NET 2003 installed on a x86 64 bit box running
Microsoft Windows Server 2003 Standard Edition with Service Pack 1
installed. I am trying to compile my existing 32 bit code into a 64
bit application. How can I do this? I tried to create a new
configuration "Debug64", but I only get Win32 as the only available
platform. What I need is a configuration which will also allow me to
build Win64 application? How can I do this?

Please advise.

You have to install the 64 bit compiler. I don't believe that was an option
with VS2003 - it is with VS2005... (In addition to 'Win32', you get 'x64'
as a target platform)

Dave Connet
Entelos, Inc.
 
G

Guest

I am very pleased to know that there is a mechanism in the development
environment that allowing 32bits host (workstation) to build and troubleshoot
64 bits applications (remotely) using Visual Studio 2005 Remote Debugging
methodology. That is going to take care of our transition. My question is,
if an application is to be run on an I64 based Intel machine(remote-which is
also our server), but the development machine (host/workstation) is going to
be a x64 AMD based machine, in this scenario, do I need to worry about using
remote debugging methodology in my development process, or are there other
things I need to be prepared so that my x64 applications could be
transferred, scheduled and executed in an I64 machine?
Thank you!
Martin
 

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