1

How can I convert a C# project on a Windows 7 64-bit machine to run on Windows xp 32-bit?

chembrad
  • 887
  • 3
  • 19
  • 33
  • 2
    What 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 Answers2

3

On project set Platform target to x86.

Gary Kindel
  • 17,071
  • 7
  • 49
  • 66
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)

Community
  • 1
  • 1
Misha
  • 571
  • 5
  • 17