Skip to content

Commit

Permalink
Update runtime.json
Browse files Browse the repository at this point in the history
  • Loading branch information
directhex committed Dec 1, 2021
1 parent 5545a71 commit c01ac90
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/installer/pkg/projects/netcoreappRIDs.props
Expand Up @@ -26,6 +26,9 @@
<OfficialBuildRID Include="linux-arm">
<Platform>arm</Platform>
</OfficialBuildRID>
<OfficialBuildRID Include="linux-armv6">
<Platform>armv6</Platform>
</OfficialBuildRID>
<OfficialBuildRID Include="linux-arm64">
<Platform>arm64</Platform>
</OfficialBuildRID>
Expand Down
Expand Up @@ -3638,6 +3638,14 @@
"any",
"base"
],
"linux-armv6": [
"linux-armv6",
"linux",
"unix-armv6",
"unix",
"any",
"base"
],
"linux-mips64": [
"linux-mips64",
"linux",
Expand Down Expand Up @@ -8100,6 +8108,12 @@
"any",
"base"
],
"unix-armv6": [
"unix-armv6",
"unix",
"any",
"base"
],
"unix-mips64": [
"unix-mips64",
"unix",
Expand Down
11 changes: 11 additions & 0 deletions src/libraries/Microsoft.NETCore.Platforms/src/runtime.json
Expand Up @@ -1475,6 +1475,12 @@
"unix-armel"
]
},
"linux-armv6": {
"#import": [
"linux",
"unix-armv6"
]
},
"linux-mips64": {
"#import": [
"linux",
Expand Down Expand Up @@ -3399,6 +3405,11 @@
"unix"
]
},
"unix-armv6": {
"#import": [
"unix"
]
},
"unix-mips64": {
"#import": [
"unix"
Expand Down
Expand Up @@ -3,11 +3,11 @@
<ItemGroup>
<RuntimeGroup Include="unix">
<Parent>any</Parent>
<Architectures>x64;x86;arm;armel;arm64;mips64;s390x</Architectures>
<Architectures>x64;x86;arm;armv6;armel;arm64;mips64;s390x</Architectures>
</RuntimeGroup>
<RuntimeGroup Include="linux">
<Parent>unix</Parent>
<Architectures>x64;x86;arm;armel;arm64;mips64;s390x</Architectures>
<Architectures>x64;x86;arm;armv6;armel;arm64;mips64;s390x</Architectures>
</RuntimeGroup>
<RuntimeGroup Include="linux-musl">
<Parent>linux</Parent>
Expand Down

0 comments on commit c01ac90

Please sign in to comment.