I have a project that was build in Microsoft Visual C# Express 2010. The program was originally built as a 32-bit application, and I want to change that to a 64-bit application.
How can I do that?
I have a project that was build in Microsoft Visual C# Express 2010. The program was originally built as a 32-bit application, and I want to change that to a 64-bit application.
How can I do that?
I dont think any conversion is necessary as long as you built it with 'Any CPU'. This option can be accessed through the project properties windows -> build tab -> Platform target dropdown.
However, the option to change the target platform is not available if you're running VS Express edition.
Additional info regarding when to specifically target 64x rather than 'Any CPU', although it doesn't seem it now, this would have to change if you were intending to use 64x DLL's (would have added this as a comment, but I think it is extremely useful).