24 lines
756 B
Batchfile
24 lines
756 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
|
|
SETLOCAL
|
|
SET NUGET_VERSION=latest
|
|
SET CACHED_NUGET=%LocalAppData%\NuGet\nuget.%NUGET_VERSION%.exe
|
|
|
|
IF EXIST %CACHED_NUGET% goto copynuget
|
|
echo Downloading latest version of NuGet.exe...
|
|
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
|
|
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://dist.nuget.org/win-x86-commandline/%NUGET_VERSION%/nuget.exe' -OutFile '%CACHED_NUGET%'"
|
|
|
|
:copynuget
|
|
IF EXIST .nuget\nuget.exe goto restore
|
|
md .nuget
|
|
copy %CACHED_NUGET% .nuget\nuget.exe > nul
|
|
|
|
:restore
|
|
IF EXIST packages\Sake goto run
|
|
.nuget\NuGet.exe install Sake -ExcludeVersion -Out packages
|
|
|
|
:run
|
|
packages\Sake\tools\Sake.exe -I build -f makefile.shade %*
|