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">
|
<Target Name="_RestoreProject">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<NuGetExe>$(NuGetPackageFolders)nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
|
<NuGetExe>$([MSBuild]::EnsureTrailingSlash('$(NuGetPackageFolders)'))nuget.commandline\$(NuGetCommandLineVersion)\tools\nuget.exe</NuGetExe>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Exec Command="$(NuGetExe) restore "$(VSIXProject)" -SolutionDir "$(RepositoryRoot) " -verbosity quiet" />
|
<Exec Command="$(NuGetExe) restore "$(VSIXProject)" -SolutionDir "$(RepositoryRoot) " -verbosity quiet" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue