Skip to content

Commit 323b0d6

Browse files
author
Dirk Lemstra
committed
Disable parallel build due to compiler bug.
1 parent f0b8947 commit 323b0d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/Scripts/Shared/Build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ function BuildSolution($solution, $properties)
3232
$location = $(Get-Location)
3333
Set-Location $directory
3434

35-
msbuild $filename /m:4 /t:Restore ("/p:$($properties)")
35+
msbuild $filename /t:Restore ("/p:$($properties)")
3636
CheckExitCode "Failed to restore: $($path)"
3737

38-
msbuild $filename /m:4 /t:Rebuild ("/p:$($properties)")
38+
msbuild $filename /t:Rebuild ("/p:$($properties)")
3939
CheckExitCode "Failed to build: $($path)"
4040

4141
Set-Location $location

0 commit comments

Comments
 (0)