slandau
slandau

Reputation: 24052

Run a build script

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!

Upvotes: 1

Views: 90

Answers (2)

sll
sll

Reputation: 62484

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

Upvotes: 0

Daniel A. White
Daniel A. White

Reputation: 190897

Open a Visual Studio Command Prompt.

msbuild <filename>

<filename> is the path to the file.

Upvotes: 2

Related Questions