开发者

Run a build script

开发者 https://www.devze.com 2023-04-09 14:04 出处:网络
So I have this build script I need to \"run\" or \"install\"? It\'s a .proj file. The directions are to run this script开发者_开发知识库 using MSBuild. How would I do this?

So I have this build script I need to "run" or "install"? It's a .proj file. The directions are to run this script开发者_开发知识库 using MSBuild. How would I do this?

Thanks!


Open a Visual Studio Command Prompt.

msbuild <filename>

<filename> is the path to the file.


Run using multiple concurrent processes (one per CPU), could be useful for "heavy" projects in case when you have multi-CPU computer:

msbuild /m /nr:false ProjectName.csproj
0

精彩评论

暂无评论...
验证码 换一张
取 消