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