Use NuGetPackageRoot instead of NuGetPackageFolders

This commit is contained in:
Pranav K 2017-04-04 15:23:42 -07:00
parent dda9cf3259
commit fa378842af
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
<Target Name="_RestoreProject">
<PropertyGroup>
<NuGetExe>$([MSBuild]::EnsureTrailingSlash('$(NuGetPackageFolders)'))nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
<NuGetExe>$([MSBuild]::EnsureTrailingSlash('$(NuGetPackageRoot)'))nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
</PropertyGroup>
<Exec Command="$(NuGetExe) restore &quot;$(VSIXProject)&quot; -SolutionDir &quot;$(RepositoryRoot) &quot; -verbosity quiet" />
</Target>