Visual Studio - 64bit Software

3

I would like to know how I do for a software that I made in visual studio to be executable in Windows 64 bit. I've already looked at the options somewhere to build 64 bit but I was not sure.

Does anyone know this process?

    
asked by anonymous 07.07.2014 / 22:50

2 answers

2

You should define the platform in your application's Build options.

Right-click the project (not the solution) and go to properties and change as shown below.

The"Any CPF", in thesis is to work on any platform (x64 / x86), in your case then just put in x64 and compile the project.

    
07.07.2014 / 23:10
0

Select your project:

1- Right button (Properties)

2- Build Section

3- CPU (Select x64)

    
07.07.2014 / 23:43