Skip to content

Commit 170b8dc

Browse files
authored
Merge pull request #263 from steffenloesch/patch-1
Correct default value for BuildInParallel
2 parents ad5033a + 166e5f2 commit 170b8dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ msbuild.exe myproj.proj /maxcpucount:3
5656
```
5757

5858
## BuildInParallel Task Parameter
59-
`BuildInParallel` is an optional boolean parameter on a [!INCLUDE[vstecmsbuild](../extensibility/internals/includes/vstecmsbuild_md.md)] task. When `BuildInParallel` is set to `true` (its default value), multiple worker processes are generated to build as many projects at the same time as possible. For this to work correctly, the `/maxcpucount` switch must be set to a value greater than 1, and the system must be at least dual-core or have two or more processors.
59+
`BuildInParallel` is an optional boolean parameter on a [!INCLUDE[vstecmsbuild](../extensibility/internals/includes/vstecmsbuild_md.md)] task. When `BuildInParallel` is set to `true` (its default value is `false`), multiple worker processes are generated to build as many projects at the same time as possible. For this to work correctly, the `/maxcpucount` switch must be set to a value greater than 1, and the system must be at least dual-core or have two or more processors.
6060

6161
The following is an example, taken from microsoft.common.targets, about how to set the `BuildInParallel` parameter.
6262

@@ -85,4 +85,4 @@ msbuild.exe myproj.proj /maxcpucount:3
8585
## See Also
8686
[Using Multiple Processors to Build Projects](../msbuild/using-multiple-processors-to-build-projects.md)
8787
[Writing Multi-Processor-Aware Loggers](../msbuild/writing-multi-processor-aware-loggers.md)
88-
[Tuning C++ Build Parallelism blog](http://go.microsoft.com/fwlink/?LinkId=251457)
88+
[Tuning C++ Build Parallelism blog](http://go.microsoft.com/fwlink/?LinkId=251457)

0 commit comments

Comments
 (0)