views:

102

answers:

1

I have Windows 7 64 bit Enterprise edition installed. Which version of Visual Studio 2008 & Visual Studio 2010 (alongwith the Windows SDK for Win 7) should I install to create both Windows applications targetted to 64bit and 32 bit platforms? Are there separate versions of Visual Studio 2008 and Visual Studio 2010 for 32bit and 64 bit OS ? I see there are separate Windows SDKs & debugging tools for 32 bit and 64 bit platforms. Which ones do I install ?

+3  A: 

Are there separate versions of Visual Studio 2008 and Visual Studio 2010 for 32bit and 64 bit OS ?

No.

The various SDKs etc can have x64 specific tools included, all you have to do is ensure you have selected those options from the features list during installation. If they are shipped as separate installs then you should be able to run both flavors - x86 and x64, then just use whichever one suits the app you are writing.

slugster
When you install Visual Studio all you have to do is select the options to include the 64-bit tools and compilers.
linuxuser27
iceman
@iceman - see http://msdn.microsoft.com/en-us/library/9yb4317s(v=VS.100).aspx. The procedure for C# is similar
linuxuser27