Reputation: 3576
I'm trying to compile my application for 64 bit, but in the options I only have x86 everywhere? I've looked in all the places but there's only x86 and no 64 bit at all.
Here's what I mean.
There's no options for 64 bit in configuration manager that I can find. Note that this is the Express edition, not the retail edition.
Upvotes: 3
Views: 9028
Reputation: 13250
To configure your project's target on a 64-bit platform, you can use the configuration manager in Visual Studio.
Here are the steps:
Go to Build menu
Select Configuration Manager
In the Active solution platform list, select the 64-bit platform for the solution to target.
If you do not see the option, select New
In the New Solution Platform dialog box, select the 64-bit platform for the solution to target.
Now the build of the project will be optimized for 64-bit platforms.
I took it from the blog post Use Visual Studio to build 64-bit application.
Upvotes: 5
Reputation: 3576
Just to let people know if they stumble across this, XNA has no 64 bit support at all which is why I couldn't do it.
Upvotes: 0