Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion src/libraries/Microsoft.NETCore.Platforms/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ For example:

This will create a new RID for `myLinuxDistro` where `myLinuxDistro` should be the string used for the `ID=` value in the `/etc/os-release` file.

Whenever modifying the `runtimeGroups.props` you should rebuild the project with `/p:UpdateRuntimeFiles=true` so that your changes will be regenerated in the checked-in `runtime.json`.
Whenever modifying the `runtimeGroups.props` you should rebuild the project with `/t:UpdateRuntimeJson /p:UpdateRuntimeFiles=true` so that your changes will be regenerated in the checked-in `runtime.json`.

RuntimeGroup items have the following format:
- `Identity`: the base string for the RID, without version architecture, or qualifiers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2883,6 +2883,38 @@
"any",
"base"
],
"fedora.36": [
"fedora.36",
"fedora",
"linux",
"unix",
"any",
"base"
],
"fedora.36-arm64": [
"fedora.36-arm64",
"fedora.36",
"fedora-arm64",
"fedora",
"linux-arm64",
"linux",
"unix-arm64",
"unix",
"any",
"base"
],
"fedora.36-x64": [
"fedora.36-x64",
"fedora.36",
"fedora-x64",
"fedora",
"linux-x64",
"linux",
"unix-x64",
"unix",
"any",
"base"
],
"freebsd": [
"freebsd",
"unix",
Expand Down
17 changes: 17 additions & 0 deletions src/libraries/Microsoft.NETCore.Platforms/src/runtime.json
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,23 @@
"fedora-x64"
]
},
"fedora.36": {
"#import": [
"fedora"
]
},
"fedora.36-arm64": {
"#import": [
"fedora.36",
"fedora-arm64"
]
},
"fedora.36-x64": {
"#import": [
"fedora.36",
"fedora-x64"
]
},
"freebsd": {
"#import": [
"unix"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,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</Versions>
<Versions>23;24;25;26;27;28;29;30;31;32;33;34;35;36</Versions>
<TreatVersionsAsCompatible>false</TreatVersionsAsCompatible>
</RuntimeGroup>

Expand Down