Reduce the number of concurrent builds

This commit is contained in:
Pranav K 2016-03-09 16:57:20 -08:00
parent 037768f531
commit 8ead3635c7
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ var buildTarget = "compile"
foreach (var batch in batchedRepos) foreach (var batch in batchedRepos)
{ {
Parallel.ForEach(batch, repo => Parallel.ForEach(batch, new ParallelOptions { MaxDegreeOfParallelism = 2 }, repo =>
{ {
var blockName = string.Format("Building {0}", repo); var blockName = string.Format("Building {0}", repo);