How can I convert a C# project on a Windows 7 64-bit machine to run on Windows xp 32-bit?
Asked
Active
Viewed 322 times
1
-
2What exactly leads you to believe that a conversion is necessary? Are you getting an error when you try to run on XP? – John Saunders Sep 07 '12 at 19:33
2 Answers
3
You can also set the Platform target to AnyCPU, then the project will run on both machines natively. There is a good explanation of how to do this in this post: How to add x64 (or Any CPU) as a build option in Visual Studio 2010 (from console application to class library)