99 lines
2.7 KiB
Diff
99 lines
2.7 KiB
Diff
|
From 5cfd86b95fcc7014803cef42cc92d296d023e05a Mon Sep 17 00:00:00 2001
|
||
|
From: Omair Majid <omajid@redhat.com>
|
||
|
Date: Wed, 15 Feb 2023 18:10:35 -0500
|
||
|
Subject: [PATCH] Add a RID for Fedora 39
|
||
|
|
||
|
---
|
||
|
.../src/runtime.compatibility.json | 32 +++++++++++++++++++
|
||
|
.../src/runtime.json | 17 ++++++++++
|
||
|
.../src/runtimeGroups.props | 2 +-
|
||
|
3 files changed, 50 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/libraries/Microsoft.NETCore.Platforms/src/runtime.compatibility.json b/src/libraries/Microsoft.NETCore.Platforms/src/runtime.compatibility.json
|
||
|
index 83e1e8476c1..d49b40577f0 100644
|
||
|
--- a/src/libraries/Microsoft.NETCore.Platforms/src/runtime.compatibility.json
|
||
|
+++ b/src/libraries/Microsoft.NETCore.Platforms/src/runtime.compatibility.json
|
||
|
@@ -4121,6 +4121,38 @@
|
||
|
"any",
|
||
|
"base"
|
||
|
],
|
||
|
+ "fedora.39": [
|
||
|
+ "fedora.39",
|
||
|
+ "fedora",
|
||
|
+ "linux",
|
||
|
+ "unix",
|
||
|
+ "any",
|
||
|
+ "base"
|
||
|
+ ],
|
||
|
+ "fedora.39-arm64": [
|
||
|
+ "fedora.39-arm64",
|
||
|
+ "fedora.39",
|
||
|
+ "fedora-arm64",
|
||
|
+ "fedora",
|
||
|
+ "linux-arm64",
|
||
|
+ "linux",
|
||
|
+ "unix-arm64",
|
||
|
+ "unix",
|
||
|
+ "any",
|
||
|
+ "base"
|
||
|
+ ],
|
||
|
+ "fedora.39-x64": [
|
||
|
+ "fedora.39-x64",
|
||
|
+ "fedora.39",
|
||
|
+ "fedora-x64",
|
||
|
+ "fedora",
|
||
|
+ "linux-x64",
|
||
|
+ "linux",
|
||
|
+ "unix-x64",
|
||
|
+ "unix",
|
||
|
+ "any",
|
||
|
+ "base"
|
||
|
+ ],
|
||
|
"freebsd": [
|
||
|
"freebsd",
|
||
|
"unix",
|
||
|
diff --git a/src/libraries/Microsoft.NETCore.Platforms/src/runtime.json b/src/libraries/Microsoft.NETCore.Platforms/src/runtime.json
|
||
|
index 40c007f6157..ddba63053ee 100644
|
||
|
--- a/src/libraries/Microsoft.NETCore.Platforms/src/runtime.json
|
||
|
+++ b/src/libraries/Microsoft.NETCore.Platforms/src/runtime.json
|
||
|
@@ -1411,6 +1411,23 @@
|
||
|
"fedora-x64"
|
||
|
]
|
||
|
},
|
||
|
+ "fedora.39": {
|
||
|
+ "#import": [
|
||
|
+ "fedora"
|
||
|
+ ]
|
||
|
+ },
|
||
|
+ "fedora.39-arm64": {
|
||
|
+ "#import": [
|
||
|
+ "fedora.39",
|
||
|
+ "fedora-arm64"
|
||
|
+ ]
|
||
|
+ },
|
||
|
+ "fedora.39-x64": {
|
||
|
+ "#import": [
|
||
|
+ "fedora.39",
|
||
|
+ "fedora-x64"
|
||
|
+ ]
|
||
|
+ },
|
||
|
"freebsd": {
|
||
|
"#import": [
|
||
|
"unix"
|
||
|
diff --git a/src/libraries/Microsoft.NETCore.Platforms/src/runtimeGroups.props b/src/libraries/Microsoft.NETCore.Platforms/src/runtimeGroups.props
|
||
|
index 3de83acbcb1..6ddb8956684 100644
|
||
|
--- a/src/libraries/Microsoft.NETCore.Platforms/src/runtimeGroups.props
|
||
|
+++ b/src/libraries/Microsoft.NETCore.Platforms/src/runtimeGroups.props
|
||
|
@@ -71,7 +71,7 @@
|
||
|
<RuntimeGroup Include="fedora">
|
||
|
<Parent>linux</Parent>
|
||
|
<Architectures>x64;arm64</Architectures>
|
||
|
- <Versions>23;24;25;26;27;28;29;30;31;32;33;34;35;36;37;38</Versions>
|
||
|
+ <Versions>23;24;25;26;27;28;29;30;31;32;33;34;35;36;37;38;39</Versions>
|
||
|
<TreatVersionsAsCompatible>false</TreatVersionsAsCompatible>
|
||
|
</RuntimeGroup>
|
||
|
|
||
|
--
|
||
|
2.39.1
|
||
|
|