Adding NuGet.exe restore to build.cmd

Enables binaries to be removed from source control
This commit is contained in:
Louis DeJardin 2012-12-12 16:26:58 -08:00
Родитель 35040ccf61
Коммит 4c18438f20
5 изменённых файлов: 6 добавлений и 2 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -16,3 +16,4 @@ target
StyleCop.Cache
node_modules
*.snk
.nuget/NuGet.exe

Двоичные данные
.nuget/Microsoft.Build.dll

Двоичный файл не отображается.

Двоичные данные
.nuget/NuGet.Core.dll

Двоичный файл не отображается.

Двоичные данные
.nuget/NuGet.exe

Двоичный файл не отображается.

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

@ -1,8 +1,11 @@
@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://nuget.org/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 %*