From 3e5d82d54f3f8c47953c3ae9bb1900e155e221e5 Mon Sep 17 00:00:00 2001 From: Nick Guerrera Date: Mon, 30 Sep 2019 12:58:24 -0700 Subject: [PATCH] Don't use global CLI as it's incompatible with running SdkTests --- eng/configure-toolset.ps1 | 4 ++++ eng/configure-toolset.sh | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 eng/configure-toolset.ps1 create mode 100644 eng/configure-toolset.sh diff --git a/eng/configure-toolset.ps1 b/eng/configure-toolset.ps1 new file mode 100644 index 000000000..87375243e --- /dev/null +++ b/eng/configure-toolset.ps1 @@ -0,0 +1,4 @@ +# SdkTests do not currently work with globally installed CLI as they use dotnet-install.ps1 to install more runtimes + +$script:useInstalledDotNetCli = $false + diff --git a/eng/configure-toolset.sh b/eng/configure-toolset.sh new file mode 100644 index 000000000..d890b1b02 --- /dev/null +++ b/eng/configure-toolset.sh @@ -0,0 +1,3 @@ +# SdkTests do not currently work with globally installed CLI as they use dotnet-install.ps1 to install more runtimes + +useInstalledDotNetCli="false" \ No newline at end of file