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:
authorNate McMaster <natemcmaster@users.noreply.github.com>2018-12-21 03:52:15 +0300
committerGitHub <noreply@github.com>2018-12-21 03:52:15 +0300
commitc3beb1f9b1497078974525ef8987a35da74376b3 (patch)
tree288dbabb023181ad0c682994d9ad23aa7886138c /restore.cmd
parentd73d6e8546dfb3ea6558d711681662cc14aa96e0 (diff)
build.cmd/sh changes (#5958)
Update the build scripts to support building subfolders or subgroups of projects * Add build scripts for ci * Remove obsolete scripts * Add flags like --test and --pack to control running just test or packaging * Add flags like --managed and --native to control building sub-types of projects * Remove KoreBuild bootstrapper flags * Update to extensions 3.0.0-preview.18619.1 (needed to get a fix for aspnet/Extensions#815 to make this change work on MSBuild.exe)
Diffstat (limited to 'restore.cmd')
-rw-r--r--restore.cmd2
1 files changed, 2 insertions, 0 deletions
diff --git a/restore.cmd b/restore.cmd
new file mode 100644
index 0000000000..e6275ff5d1
--- /dev/null
+++ b/restore.cmd
@@ -0,0 +1,2 @@
+@ECHO OFF
+PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';& '%~dp0build.ps1' -all -restore:$true -build:$False %*; exit $LASTEXITCODE"