Update NugetWrapper.cmd to download nuget.exe from nuget.org and cache locally instead of using internal share (#94)

This commit is contained in:
Jevan Saks 2018-12-16 20:30:56 -08:00 коммит произвёл GitHub
Родитель 4b3b5ac7cf
Коммит 6a059daddc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -3,6 +3,11 @@ setlocal
set VisualStudioVersion=15.0 set VisualStudioVersion=15.0
\\edge-svcs\nuget\v4.6.2\NuGet.exe %* if not exist %TEMP%\nuget.4.9.2.exe (
echo Nuget.exe not found in the temp dir, downloading.
powershell -Command "& { Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/v4.9.2/nuget.exe -outfile $env:TEMP\nuget.4.9.2.exe }"
)
exit /B %ERRORLEVEL% %TEMP%\nuget.4.9.2.exe %*
exit /B %ERRORLEVEL%