Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Hurdugaci <victor.hurdugaci@microsoft.com>2016-03-03 02:57:31 +0300
committerVictor Hurdugaci <victor.hurdugaci@microsoft.com>2016-03-03 20:50:25 +0300
commit510dab8407557ba07b443ae1062915d3a1f45443 (patch)
tree6578d87c89046ea6109bcaf29564edd75d8394e9 /build.cmd
parent27e373b277319c45a1c0c359c4e9c513ab007ff9 (diff)
Remove KoreBuild
Diffstat (limited to 'build.cmd')
-rw-r--r--build.cmd25
1 files changed, 2 insertions, 23 deletions
diff --git a/build.cmd b/build.cmd
index 1fdea7294f..7d4894cb4a 100644
--- a/build.cmd
+++ b/build.cmd
@@ -1,23 +1,2 @@
-@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 KoreBuild-dotnet\build -f makefile.shade %*
+@ECHO OFF
+PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0build.ps1' %*; exit $LASTEXITCODE" \ No newline at end of file