Update dependencies from https://github.com/dotnet/arcade build 20190228.3

This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19128.3
This commit is contained in:
dotnet-maestro 2019-03-01 13:11:16 +00:00
parent 76543aaeee
commit 0412dd5a3b
4 changed files with 46 additions and 38 deletions

View file

@ -13,17 +13,21 @@ usage()
echo " --configuration <value> Build configuration: 'Debug' or 'Release' (short: -c)"
echo " --verbosity <value> Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)"
echo " --binaryLog Create MSBuild binary log (short: -bl)"
echo ""
echo "Actions:"
echo " --restore Restore dependencies (short: -r)"
echo " --build Build all projects (short: -b)"
echo " --rebuild Rebuild all projects"
echo " --test Run all unit tests (short: -t)"
echo " --sign Sign build outputs"
echo " --publish Publish artifacts (e.g. symbols)"
echo " --pack Package build outputs into NuGet packages and Willow components"
echo " --help Print help and exit (short: -h)"
echo ""
echo "Actions:"
echo " --restore Restore dependencies (short: -r)"
echo " --build Build solution (short: -b)"
echo " --rebuild Rebuild solution"
echo " --test Run all unit tests in the solution (short: -t)"
echo " --integrationTest Run all integration tests in the solution"
echo " --performanceTest Run all performance tests in the solution"
echo " --pack Package build outputs into NuGet packages and Willow components"
echo " --sign Sign build outputs"
echo " --publish Publish artifacts (e.g. symbols)"
echo ""
echo "Advanced settings:"
echo " --projects <value> Project or solution file(s) to build"
echo " --ci Set when running on CI server"
@ -32,6 +36,7 @@ usage()
echo " --warnAsError <value> Sets warnaserror msbuild parameter ('true' or 'false')"
echo ""
echo "Command line arguments starting with '/p:' are passed through to MSBuild."
echo "Arguments can also be passed in with a single hyphen."
}
source="${BASH_SOURCE[0]}"
@ -50,10 +55,10 @@ restore=false
build=false
rebuild=false
test=false
pack=false
publish=false
integration_test=false
performance_test=false
pack=false
publish=false
sign=false
public=false
ci=false
@ -66,68 +71,69 @@ projects=''
configuration='Debug'
prepare_machine=false
verbosity='minimal'
properties=''
while [[ $# > 0 ]]; do
opt="$(echo "$1" | awk '{print tolower($0)}')"
opt="$(echo "${1/#--/-}" | awk '{print tolower($0)}')"
case "$opt" in
--help|-h)
-help|-h)
usage
exit 0
;;
--configuration|-c)
-configuration|-c)
configuration=$2
shift
;;
--verbosity|-v)
-verbosity|-v)
verbosity=$2
shift
;;
--binarylog|-bl)
-binarylog|-bl)
binary_log=true
;;
--restore|-r)
-restore|-r)
restore=true
;;
--build|-b)
-build|-b)
build=true
;;
--rebuild)
-rebuild)
rebuild=true
;;
--pack)
-pack)
pack=true
;;
--test|-t)
-test|-t)
test=true
;;
--integrationtest)
-integrationtest)
integration_test=true
;;
--performancetest)
-performancetest)
performance_test=true
;;
--sign)
-sign)
sign=true
;;
--publish)
-publish)
publish=true
;;
--preparemachine)
-preparemachine)
prepare_machine=true
;;
--projects)
-projects)
projects=$2
shift
;;
--ci)
-ci)
ci=true
;;
--warnaserror)
-warnaserror)
warn_as_error=$2
shift
;;
--nodereuse)
-nodereuse)
node_reuse=$2
shift
;;