Skip to content

Commit a9b6c14

Browse files
authored
add RID for Ubuntu 23.04 (#82123)
1 parent 9d02343 commit a9b6c14

File tree

4 files changed

+99
-3
lines changed

4 files changed

+99
-3
lines changed

src/libraries/Microsoft.NETCore.Platforms/src/Microsoft.NETCore.Platforms.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
<_generateRuntimeGraphTask>$([MSBuild]::NormalizePath('$(BaseOutputPath)', $(Configuration), '$(_generateRuntimeGraphTargetFramework)', '$(AssemblyName).dll'))</_generateRuntimeGraphTask>
2424
<!-- When building from source, ensure the RID we're building for is part of the RID graph -->
2525
<AdditionalRuntimeIdentifiers Condition="'$(DotNetBuildFromSource)' == 'true'">$(AdditionalRuntimeIdentifiers);$(OutputRID)</AdditionalRuntimeIdentifiers>
26+
<ServicingVersion>1</ServicingVersion>
27+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2628
</PropertyGroup>
2729

2830
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">

src/libraries/Microsoft.NETCore.Platforms/src/runtime.compatibility.json

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10423,6 +10423,71 @@
1042310423
"any",
1042410424
"base"
1042510425
],
10426+
"ubuntu.23.04": [
10427+
"ubuntu.23.04",
10428+
"ubuntu",
10429+
"debian",
10430+
"linux",
10431+
"unix",
10432+
"any",
10433+
"base"
10434+
],
10435+
"ubuntu.23.04-arm": [
10436+
"ubuntu.23.04-arm",
10437+
"ubuntu.23.04",
10438+
"ubuntu-arm",
10439+
"ubuntu",
10440+
"debian-arm",
10441+
"debian",
10442+
"linux-arm",
10443+
"linux",
10444+
"unix-arm",
10445+
"unix",
10446+
"any",
10447+
"base"
10448+
],
10449+
"ubuntu.23.04-arm64": [
10450+
"ubuntu.23.04-arm64",
10451+
"ubuntu.23.04",
10452+
"ubuntu-arm64",
10453+
"ubuntu",
10454+
"debian-arm64",
10455+
"debian",
10456+
"linux-arm64",
10457+
"linux",
10458+
"unix-arm64",
10459+
"unix",
10460+
"any",
10461+
"base"
10462+
],
10463+
"ubuntu.23.04-x64": [
10464+
"ubuntu.23.04-x64",
10465+
"ubuntu.23.04",
10466+
"ubuntu-x64",
10467+
"ubuntu",
10468+
"debian-x64",
10469+
"debian",
10470+
"linux-x64",
10471+
"linux",
10472+
"unix-x64",
10473+
"unix",
10474+
"any",
10475+
"base"
10476+
],
10477+
"ubuntu.23.04-x86": [
10478+
"ubuntu.23.04-x86",
10479+
"ubuntu.23.04",
10480+
"ubuntu-x86",
10481+
"ubuntu",
10482+
"debian-x86",
10483+
"debian",
10484+
"linux-x86",
10485+
"linux",
10486+
"unix-x86",
10487+
"unix",
10488+
"any",
10489+
"base"
10490+
],
1042610491
"unix": [
1042710492
"unix",
1042810493
"any",
@@ -11118,4 +11183,4 @@
1111811183
"any",
1111911184
"base"
1112011185
]
11121-
}
11186+
}

src/libraries/Microsoft.NETCore.Platforms/src/runtime.json

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3999,6 +3999,35 @@
39993999
"ubuntu-x86"
40004000
]
40014001
},
4002+
"ubuntu.23.04": {
4003+
"#import": [
4004+
"ubuntu"
4005+
]
4006+
},
4007+
"ubuntu.23.04-arm": {
4008+
"#import": [
4009+
"ubuntu.23.04",
4010+
"ubuntu-arm"
4011+
]
4012+
},
4013+
"ubuntu.23.04-arm64": {
4014+
"#import": [
4015+
"ubuntu.23.04",
4016+
"ubuntu-arm64"
4017+
]
4018+
},
4019+
"ubuntu.23.04-x64": {
4020+
"#import": [
4021+
"ubuntu.23.04",
4022+
"ubuntu-x64"
4023+
]
4024+
},
4025+
"ubuntu.23.04-x86": {
4026+
"#import": [
4027+
"ubuntu.23.04",
4028+
"ubuntu-x86"
4029+
]
4030+
},
40024031
"unix": {
40034032
"#import": [
40044033
"any"
@@ -4378,4 +4407,4 @@
43784407
]
43794408
}
43804409
}
4381-
}
4410+
}

src/libraries/Microsoft.NETCore.Platforms/src/runtimeGroups.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
<RuntimeGroup Include="ubuntu">
263263
<Parent>debian</Parent>
264264
<Architectures>x64;x86;arm;arm64</Architectures>
265-
<Versions>16.04;16.10;17.04;17.10;18.04;18.10;19.04;19.10;20.04;20.10;21.04;21.10;22.04</Versions>
265+
<Versions>16.04;16.10;17.04;17.10;18.04;18.10;19.04;19.10;20.04;20.10;21.04;21.10;22.04;23.04</Versions>
266266
<TreatVersionsAsCompatible>false</TreatVersionsAsCompatible>
267267
</RuntimeGroup>
268268

0 commit comments

Comments
 (0)