From 84d274a8f3d416b0a5bd999e3d1c43ae1535e38f Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Wed, 23 Oct 2019 15:43:57 -0400 Subject: [PATCH] Support global.json on arm64 as well arcade uses the runtime section of global.json to decide which architecture + runtime combination needs to be installed. With https://github.com/dotnet/arcade/pull/4132 arcade can install foreign SDKs in separate locations correctly. This change, suggested by @dougbu, makes arcade always install the runtime for the local architecture (which means it should work on arm64 and x64) as well as the x86 architecture (skipped on Linux). This gets us a working SDK/Runtime combo on arm64. --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 602f4f44e170..40dec559cc94 100644 --- a/global.json +++ b/global.json @@ -5,7 +5,7 @@ "tools": { "dotnet": "5.0.100-alpha1-014696", "runtimes": { - "dotnet/x64": [ + "dotnet": [ "$(MicrosoftNETCoreAppRuntimeVersion)" ], "dotnet/x86": [