From 9efd809d4da850e6beed215a069181d193343d61 Mon Sep 17 00:00:00 2001 From: Aditya Aggarwal Date: Thu, 29 Aug 2019 14:57:10 -0500 Subject: [PATCH] add ipv6 information in build.sh --- build.sh | 3 +++ support/tarball/build.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/build.sh b/build.sh index ee52dbd5ab..d882d4011c 100755 --- a/build.sh +++ b/build.sh @@ -12,6 +12,9 @@ if [[ $arcadeLine =~ $pattern ]]; then fi echo "Found 2.x SDK $SDK_VERSION, 3.x SDK $SDK3_VERSION, Arcade bootstrap $ARCADE_BOOTSTRAP_VERSION" +echo "IP information:" +ifconfig -a + if [ -z "${HOME:-}" ]; then export HOME="$SCRIPT_ROOT/.home" mkdir "$HOME" diff --git a/support/tarball/build.sh b/support/tarball/build.sh index 9dd8d0a7c0..008fa24aae 100755 --- a/support/tarball/build.sh +++ b/support/tarball/build.sh @@ -13,6 +13,9 @@ export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 export NUGET_PACKAGES="$SCRIPT_ROOT/packages/" +echo "IP information:" +ifconfig -a + MSBUILD_ARGUMENTS=("/p:OfflineBuild=true" "/flp:v=detailed") echo "Rebuild reference assemblies"