File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 84
84
85
85
<!-- Need three phases to build correctly due to dependencies between legacy and SDK-style projects -->
86
86
<!-- 1. Special case NetCore project because an SDK test project depends on it. -->
87
+ <Message Importance="High" Text='%0A> "$(NuGetExe)" restore "src\System.Net.Http.Formatting.NetCore\packages.config" ...'
88
+ Condition=" '$(BuildPortable)' == 'true' " />
87
89
<Exec Command='"$(NuGetExe)" restore "src\System.Net.Http.Formatting.NetCore\packages.config" ^
88
90
-PackagesDirectory packages -NonInteractive ^
89
- -Verbosity quiet -ConfigFile "$(MSBuildThisFileDirectory)\ .nuget\NuGet.Config" '
91
+ -Verbosity quiet -ConfigFile .nuget\NuGet.Config'
90
92
Condition=" '$(BuildPortable)' == 'true' " />
91
93
<!-- 2. Restore SDK-style test projects because legacy test projects depend on TestCommon. -->
94
+ <Message Importance="High" Text='%0A> dotnet restore "@(_ProjectsToRestore)"' />
92
95
<MSBuild Projects="@(_ProjectsToRestore)" Targets="Restore"
93
96
BuildInParallel="$(BuildInParallel)"
94
97
Properties="Configuration=$(Configuration);CodeAnalysis=$(CodeAnalysis);StyleCopEnabled=$(StyleCopEnabled);VisualStudioVersion=$(VisualStudioVersion)" />
95
98
<!-- 3. Restore remaining legacy projects. -->
99
+ <Message Importance="High" Text='%0A> "$(NuGetExe)" restore "@(_NuGetPackagesAndSolutions)" ...' />
96
100
<Exec Command='"$(NuGetExe)" restore "%(_NuGetPackagesAndSolutions.Identity)" ^
97
101
-PackagesDirectory packages -NonInteractive ^
98
- -Verbosity quiet -ConfigFile "$(MSBuildThisFileDirectory)\.nuget\NuGet.Config"' />
102
+ -Verbosity quiet -ConfigFile .nuget\NuGet.Config' />
103
+ <Message Importance="High" Text='' />
99
104
</Target>
100
105
101
106
<!-- Pick the right Microsoft.Web.FxCop package to use and copy it to a standard location. -->
You can’t perform that action at this time.
0 commit comments