How to build a solution from the command line with VS2012 Express?

无人久伴 提交于 2019-12-23 04:45:32

问题


How to build a VC++ solution from the command line with Visual C++ 2012 Express ?


回答1:


Open a "Developer Command Prompt for VS2012", located in the "Microsoft Visual Studio 2012 --> Visual Studio Tools" in "All Programs".

Type msbuild /help to have documentation.

Example: cd to your solution folder. type MSBuild MyApp.sln /t:Rebuild /p:Configuration=Release /p:Platform=Win32



来源:https://stackoverflow.com/questions/20065446/how-to-build-a-solution-from-the-command-line-with-vs2012-express

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