How to debug Visual Studio in 64-bit

OK, after creating the application, I want it to be compatible for 64-bit and 32-bit systems. By default, Visual Studio debugs applications in x86 (which is 32-bit). So, how can I do Visual Studio debugging on x64 for 64-bit systems. Thank.

+5
source share
1 answer

Not sure which language, but if it is C # ...

The default value for C # projects is to build x86 in debug mode in Visual Studio 2010. To debug in the 64-bit version, you just need to change the build setting to 64 bits.

  • Right click on the project and select properties
  • Go to the assembly tab
  • "Target Platform" x64
+6

All Articles