12 строки
455 B
Batchfile
12 строки
455 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
|
|
IF EXIST .nuget\NuGet.exe goto part2
|
|
echo Downloading latest version of NuGet.exe...
|
|
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "((new-object net.webclient).DownloadFile('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', '.nuget\NuGet.exe'))"
|
|
|
|
:part2
|
|
set EnableNuGetPackageRestore=true
|
|
.nuget\NuGet.exe install Sake -version 0.2 -o packages
|
|
packages\Sake.0.2\tools\Sake.exe -I build -f Sakefile.shade %*
|