Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmair Majid <omajid@redhat.com>2021-12-02 07:42:04 +0300
committerGitHub <noreply@github.com>2021-12-02 07:42:04 +0300
commita32dde1438404a98ec437e249f43666cd4001170 (patch)
tree5f415c0e63e5076f76f99cbd60dcea42b8833451 /global.json
parentb4c18dcfe4ff9197e3de9e35968ee9c5e1901c59 (diff)
Improve building ASP.NET Core directly on arm64 machines (#38527)
- improve build on Linux arm64 - apply changes suggested by Doug Bunting - improve running tests on arm64 - use the currently running system's architecture instead of hard-coding x64 - skip h2spec tests on arm64 and x86
Diffstat (limited to 'global.json')
-rw-r--r--global.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/global.json b/global.json
index 0fe3e81a50..6682b115b0 100644
--- a/global.json
+++ b/global.json
@@ -5,14 +5,14 @@
"tools": {
"dotnet": "7.0.100-alpha.1.21558.2",
"runtimes": {
- "dotnet/x64": [
+ "dotnet": [
"2.1.30",
"$(MicrosoftNETCoreBrowserDebugHostTransportVersion)"
],
"dotnet/x86": [
"$(MicrosoftNETCoreBrowserDebugHostTransportVersion)"
],
- "aspnetcore/x64": [
+ "aspnetcore": [
"3.1.21"
]
},