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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-02-10 02:18:35 +0300
committerJan Kotas <jkotas@microsoft.com>2016-02-10 07:29:14 +0300
commit0acc9d64fe3e9776f344f6a945278ea163a3875e (patch)
treeaaa0514841625d1e0726c293e3936b4d3ca7984f /dir.props
parentffc8df5bc764c3ce34e938abd34943bcf61687fd (diff)
Disable parallel restore
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props4
1 files changed, 3 insertions, 1 deletions
diff --git a/dir.props b/dir.props
index 8e3e1e783..1909f57fd 100644
--- a/dir.props
+++ b/dir.props
@@ -160,7 +160,9 @@
<DnuRestoreCommand>"$(DnuToolPath)"</DnuRestoreCommand>
<DnuRestoreCommand>$(DnuRestoreCommand) restore</DnuRestoreCommand>
- <DnuRestoreCommand Condition="'$(ParallelRestore)'=='true'">$(DnuRestoreCommand) --parallel</DnuRestoreCommand>
+ <!-- Disable parallel restore for now https://github.com/dotnet/corert/issues/838 -->
+ <!-- <DnuRestoreCommand Condition="'$(ParallelRestore)'=='true'">$(DnuRestoreCommand) - -parallel</DnuRestoreCommand> -->
+ <DnuRestoreCommand>$(DnuRestoreCommand) --disable-parallel</DnuRestoreCommand>
<DnuRestoreCommand>$(DnuRestoreCommand) --packages "$(PackagesDir.TrimEnd('/\'.ToCharArray()))" $(DnuRestoreSource)</DnuRestoreCommand>
<DnuRestoreCommand Condition="'$(LockDependencies)' == 'true'">$(DnuRestoreCommand) --lock</DnuRestoreCommand>
</PropertyGroup>