Skip to content

Commit 809b46f

Browse files
authored
Merge pull request #1530 from Mikejo5000/mikejo-msbuild
Corrected an msbuild issue
2 parents baa104b + f11201d commit 809b46f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/msbuild/building-multiple-projects-in-parallel-with-msbuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You can use MSBuild to build multiple projects faster by running them in paralle
3939
The following example instructs MSBuild to use three worker processes. If you use this configuration, MSBuild can build three projects at the same time.
4040

4141
```
42-
msbuild.exe myproj.proj childid=0 childid=1 childid=2
42+
msbuild.exe myproj.proj /maxcpucount:3
4343
```
4444

4545
## BuildInParallel Task Parameter

0 commit comments

Comments
 (0)