summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--eng/configure-toolset.ps13
-rw-r--r--eng/configure-toolset.sh5
2 files changed, 7 insertions, 1 deletions
diff --git a/eng/configure-toolset.ps1 b/eng/configure-toolset.ps1
index 96aed776bb..eeb99c3409 100644
--- a/eng/configure-toolset.ps1
+++ b/eng/configure-toolset.ps1
@@ -7,3 +7,6 @@ $script:useInstalledDotNetCli = $false
# Always use the local repo packages directory instead of
# the user's NuGet cache
$script:useGlobalNuGetCache = $false
+
+# Working around issue https://github.com/dotnet/arcade/issues/2673
+$script:DisableNativeToolsetInstalls = $true
diff --git a/eng/configure-toolset.sh b/eng/configure-toolset.sh
index c5af261c6f..86cdfae49b 100644
--- a/eng/configure-toolset.sh
+++ b/eng/configure-toolset.sh
@@ -6,4 +6,7 @@ use_installed_dotnet_cli=false
# Always use the local repo packages directory instead of
# the user's NuGet cache
-use_global_nuget_cache=false \ No newline at end of file
+use_global_nuget_cache=false
+
+# Working around issue https://github.com/dotnet/arcade/issues/2673
+DisableNativeToolsetInstalls=true