From c3e5bfd6e73d121d1582d3f7cf1aecb8cb95f331 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 0696d5b54b..face6b8646 100644 --- a/global.json +++ b/global.json @@ -5,7 +5,7 @@ "tools": { "dotnet": "5.0.100-alpha1-015536", "runtimes": { - "dotnet/x64": [ + "dotnet": [ "$(MicrosoftNETCoreAppRuntimeVersion)" ], "dotnet/x86": [