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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-02-10 07:03:34 +0300
committerJan Kotas <jkotas@microsoft.com>2016-02-10 07:29:15 +0300
commita9672a8d8130b76ea574bf5f27a5129de11a70e2 (patch)
tree9e1bd9a3a8447f9395c18ce26caf2f7ad069e00b
parent0acc9d64fe3e9776f344f6a945278ea163a3875e (diff)
Add diagnostic output with CLI version
-rw-r--r--build.cmd3
-rwxr-xr-xbuild.sh3
2 files changed, 6 insertions, 0 deletions
diff --git a/build.cmd b/build.cmd
index a952d9a8b..b27208a98 100644
--- a/build.cmd
+++ b/build.cmd
@@ -181,6 +181,9 @@ if not exist "%__DotNetCliPath%" (
exit /b 1
)
+echo type "%__DotNetCliPath%\.version"
+type "%__DotNetCliPath%\.version"
+
:: Set the environment for the managed build
:SetupManagedBuild
call "!VS%__VSProductVersion%COMNTOOLS!\VsDevCmd.bat"
diff --git a/build.sh b/build.sh
index d0c657f68..49e9f0f2f 100755
--- a/build.sh
+++ b/build.sh
@@ -128,6 +128,9 @@ install_dotnet_cli()
echo "CLI could not be installed or not present."
exit 1
fi
+
+ echo "cat ${__cli_dir}/.version"
+ cat "${__cli_dir}/.version"
}
check_native_prereqs()