Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphenning <phil.henning@microsoft.com>2012-08-22 01:23:03 +0400
committerphenning <phil.henning@microsoft.com>2012-08-22 01:43:23 +0400
commit4db2ca2a87c9d286279ec3a7162c4fb2ebad1ec2 (patch)
treee05317ab0fd5538169780ce5a1ad9d1131f75659 /Runtime.msbuild
parent579792439923f302f465ca589bc0474ad749ba7b (diff)
Turn off BuildInParallel for Extensions solution to resolve build race issue.
Diffstat (limited to 'Runtime.msbuild')
-rw-r--r--Runtime.msbuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/Runtime.msbuild b/Runtime.msbuild
index c5edb6b4..04caf8c7 100644
--- a/Runtime.msbuild
+++ b/Runtime.msbuild
@@ -15,9 +15,11 @@
<ItemGroup>
<SolutionsToBuild Include="Runtime.sln">
<ReleaseRoot>.</ReleaseRoot>
+ <BuildInParallel>$(BuildInParallel)</BuildInParallel>
</SolutionsToBuild>
<SolutionsToBuild Include="Extensions.sln">
<ReleaseRoot>Extensions</ReleaseRoot>
+ <BuildInParallel>false</BuildInParallel>
</SolutionsToBuild>
</ItemGroup>
@@ -57,7 +59,7 @@
<MakeDir Directories="bin\%(SolutionsToBuild.ReleaseRoot)\$(Configuration)" />
<MSBuild
Projects="%(SolutionsToBuild.Identity)"
- BuildInParallel="$(BuildInParallel)"
+ BuildInParallel="%(SolutionsToBuild.BuildInParallel)"
Targets="Build"
Properties="Configuration=$(Configuration);CodeAnalysis=$(CodeAnalysis);StyleCopEnabled=$(StyleCopEnabled)" />
</Target>