Compile Console App as 32 bit

余生颓废 提交于 2019-12-20 01:38:01

问题


I have a Windows Console Application that I need to compile as 32 bit. It's written in C# and I have all the Visual Studio 2012 updates. I've tried following several things on here, but I'm never given an option for 32 bit. How can I compile it as 32 bit?


回答1:


With Visual Studio you are able to target what platform.

By default it will run on "Any CPU" (read 32 or 64 bit), but you can specify if you desire. Look under Project>Properties>Build and look for the "Platform Target" property.




回答2:


The target platforms are called "X64" and "X86", where "X86" is 32bit.



来源:https://stackoverflow.com/questions/20909067/compile-console-app-as-32-bit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!