Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

release/3.1: add also osx 10.16 fo compact reasons #42971

Merged
merged 1 commit into from
Aug 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json
Original file line number Diff line number Diff line change
Expand Up @@ -2456,8 +2456,66 @@
"any",
"base"
],
"osx.10.16": [
"osx.10.16",
"osx.10.15",
"osx.10.14",
"osx.10.13",
"osx.10.12",
"osx.10.11",
"osx.10.10",
"osx",
"unix",
"any",
"base"
],
"osx.10.16-arm64": [
"osx.10.16-arm64",
"osx.10.16",
"osx.10.15-arm64",
"osx.10.15",
"osx.10.14-arm64",
"osx.10.14",
"osx.10.13-arm64",
"osx.10.13",
"osx.10.12-arm64",
"osx.10.12",
"osx.10.11-arm64",
"osx.10.11",
"osx.10.10-arm64",
"osx.10.10",
"osx-arm64",
"osx",
"unix-arm64",
"unix",
"any",
"base"
],
"osx.10.16-x64": [
"osx.10.16-x64",
"osx.10.16",
"osx.10.15-x64",
"osx.10.15",
"osx.10.14-x64",
"osx.10.14",
"osx.10.13-x64",
"osx.10.13",
"osx.10.12-x64",
"osx.10.12",
"osx.10.11-x64",
"osx.10.11",
"osx.10.10-x64",
"osx.10.10",
"osx-x64",
"osx",
"unix-x64",
"unix",
"any",
"base"
],
"osx.11.0": [
"osx.11.0",
"osx.10.16",
"osx.10.15",
"osx.10.14",
"osx.10.13",
Expand All @@ -2472,6 +2530,8 @@
"osx.11.0-arm64": [
"osx.11.0-arm64",
"osx.11.0",
"osx.10.16-arm64",
"osx.10.16",
"osx.10.15-arm64",
"osx.10.15",
"osx.10.14-arm64",
Expand All @@ -2494,6 +2554,8 @@
"osx.11.0-x64": [
"osx.11.0-x64",
"osx.11.0",
"osx.10.16-x64",
"osx.10.16",
"osx.10.15-x64",
"osx.10.15",
"osx.10.14-x64",
Expand Down
23 changes: 20 additions & 3 deletions pkg/Microsoft.NETCore.Platforms/runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -1121,21 +1121,38 @@
"osx.10.14-x64"
]
},
"osx.11.0": {
"osx.10.16": {
"#import": [
"osx.10.15"
]
},
"osx.10.16-arm64": {
"#import": [
"osx.10.16",
"osx.10.15-arm64"
]
},
"osx.10.16-x64": {
"#import": [
"osx.10.16",
"osx.10.15-x64"
]
},
"osx.11.0": {
"#import": [
"osx.10.16"
]
},
"osx.11.0-arm64": {
"#import": [
"osx.11.0",
"osx.10.15-arm64"
"osx.10.16-arm64"
]
},
"osx.11.0-x64": {
"#import": [
"osx.11.0",
"osx.10.15-x64"
"osx.10.16-x64"
]
},
"rhel": {
Expand Down
2 changes: 1 addition & 1 deletion pkg/Microsoft.NETCore.Platforms/runtimeGroups.props
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
<RuntimeGroup Include="osx">
<Parent>unix</Parent>
<Architectures>x64;arm64</Architectures>
<Versions>10.10;10.11;10.12;10.13;10.14;10.15;11.0</Versions>
<Versions>10.10;10.11;10.12;10.13;10.14;10.15;10.16;11.0</Versions>
</RuntimeGroup>

<RuntimeGroup Include="freebsd">
Expand Down