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.sh
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.sh')
-rw-r--r--restore.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/restore.sh b/restore.sh
new file mode 100644
index 0000000000..0dee0a4a03
--- /dev/null
+++ b/restore.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+set -euo pipefail
+
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+repo_root="$DIR/../.."
+"$repo_root/build.sh" --all --restore --no-build "$@"