Skip to content

Commit

Permalink
Support global.json on arm64 as well
Browse files Browse the repository at this point in the history
arcade uses the runtime section of global.json to decide which
architecture + runtime combination needs to be installed.

With dotnet/arcade#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.
  • Loading branch information
omajid authored and dougbu committed Nov 2, 2019
1 parent 07dab17 commit c3e5bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"tools": {
"dotnet": "5.0.100-alpha1-015536",
"runtimes": {
"dotnet/x64": [
"dotnet": [
"$(MicrosoftNETCoreAppRuntimeVersion)"
],
"dotnet/x86": [
Expand Down

0 comments on commit c3e5bfd

Please sign in to comment.