Account for missing trailing slash in package path when restoring vsix
This commit is contained in:
parent
3ba44f5038
commit
addbac24aa
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
<Target Name="_RestoreProject">
|
||||
<PropertyGroup>
|
||||
<NuGetExe>$(NuGetPackageFolders)nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
|
||||
<NuGetExe>$([MSBuild]::EnsureTrailingSlash('$(NuGetPackageFolders)'))nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
|
||||
</PropertyGroup>
|
||||
<Exec Command="$(NuGetExe) restore "$(VSIXProject)" -SolutionDir "$(RepositoryRoot) " -verbosity quiet" />
|
||||
</Target>
|
||||
|
|
|
|||
Loading…
Reference in New Issue