We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1679340 commit 5ce687dCopy full SHA for 5ce687d
build.proj
@@ -34,6 +34,12 @@ of patent rights can be found in the PATENTS file in the same directory.
34
<Import Project="$(MSBuildProjectDirectory)\tools\MSBuildTasks\MSBuild.Community.Tasks.Targets" />
35
36
<Target Name="RestorePackages" DependsOnTargets="Clean;UpdateVersion">
37
+ <!-- NuGet packages for "legacy" projects (eg. React.Samples.Mvc4) -->
38
+ <Exec
39
+ WorkingDirectory="$(MSBuildProjectDirectory)"
40
+ Command="tools\NuGet\nuget.exe restore $(SolutionFile)"
41
+ />
42
+ <!-- NuGet packages for modern .csproj projects -->
43
<Exec
44
WorkingDirectory="$(MSBuildProjectDirectory)"
45
Command="dotnet restore $(SolutionFile) /p:Version=$(VersionString)"
0 commit comments