File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 10
10
<StyleCopEnabled Condition=" '$(StyleCopEnabled)' == '' ">true</StyleCopEnabled>
11
11
<BuildPortable Condition=" '$(BuildPortable)' == '' ">true</BuildPortable>
12
12
<BuildInParallel Condition=" '$(BuildInParallel)' == '' And $(MSBuildNodeCount) > 1 ">true</BuildInParallel>
13
+ <RestoreInParallel Condition=" '$(RestoreInParallel)' == '' ">false</RestoreInParallel>
13
14
<BuildInParallel Condition=" '$(BuildInParallel)' == '' ">false</BuildInParallel>
14
15
<TestInParallel Condition=" '$(TestInParallel)' == '' ">false</TestInParallel>
15
16
<TestResultsDirectory>$(MSBuildThisFileDirectory)bin\$(Configuration)\test\TestResults\</TestResultsDirectory>
93
94
<!-- 2. Restore SDK-style test projects because legacy test projects depend on TestCommon. -->
94
95
<Message Importance="High" Text='%0A> dotnet restore "@(_ProjectsToRestore)"' />
95
96
<MSBuild Projects="@(_ProjectsToRestore)" Targets="Restore"
96
- BuildInParallel="$(BuildInParallel )"
97
+ BuildInParallel="$(RestoreInParallel )"
97
98
Properties="Configuration=$(Configuration);CodeAnalysis=$(CodeAnalysis);StyleCopEnabled=$(StyleCopEnabled);VisualStudioVersion=$(VisualStudioVersion)" />
98
99
<!-- 3. Restore remaining legacy projects. -->
99
100
<Message Importance="High" Text='%0A> "$(NuGetExe)" restore "@(_NuGetPackagesAndSolutions)" ...' />
You can’t perform that action at this time.
0 commit comments