diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-installer.0cf287db1b98af7053f2d0794811ec3a4b4d1fa0/src/core-sdk-tasks/Enumerations/BuildPlatform.cs dotnet-v5.0.206-SDK/src/dotnet-installer.0cf287db1b98af7053f2d0794811ec3a4b4d1fa0/src/core-sdk-tasks/Enumerations/BuildPlatform.cs --- dotnet-v5.0.206-SDK-orig/src/dotnet-installer.0cf287db1b98af7053f2d0794811ec3a4b4d1fa0/src/core-sdk-tasks/Enumerations/BuildPlatform.cs 2021-08-04 08:29:39.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-installer.0cf287db1b98af7053f2d0794811ec3a4b4d1fa0/src/core-sdk-tasks/Enumerations/BuildPlatform.cs 2021-08-12 10:15:24.807635250 -0700 @@ -15,6 +15,7 @@ namespace Microsoft.DotNet.Cli.Build.Fra Debian = 8, Fedora = 9, OpenSuse = 10, - FreeBSD = 11 + FreeBSD = 11, + Rocky = 12, } } diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/installer/Directory.Build.props dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/installer/Directory.Build.props --- dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/installer/Directory.Build.props 2021-08-04 08:28:51.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/installer/Directory.Build.props 2021-08-12 10:18:08.764751358 -0700 @@ -172,6 +172,7 @@ false false false + false false false false @@ -252,6 +253,13 @@ true + + + true + true + true + + true @@ -333,7 +341,7 @@ .msi .pkg .deb - .rpm + .rpm .exe $(InstallerExtension) diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json --- dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json 2021-08-04 08:28:56.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.compatibility.json 2021-08-12 10:26:35.614295177 -0700 @@ -4601,6 +4601,122 @@ "any", "base" ], + "rocky": [ + "rocky", + "rhel", + "linux", + "unix", + "any", + "base" + ], + "rocky-arm64": [ + "rocky-arm64", + "rocky", + "rhel-arm64", + "rhel", + "linux-arm64", + "linux", + "unix-arm64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky-x64", + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8": [ + "rocky.8", + "rocky", + "rhel.8", + "rhel", + "linux", + "unix", + "any", + "base" + ], + "rocky.8-arm64": [ + "rocky.8-arm64", + "rocky.8", + "rocky-arm64", + "rhel.8-arm64", + "rocky", + "rhel.8", + "rhel-arm64", + "rhel", + "linux-arm64", + "linux", + "unix-arm64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8-x64", + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9": [ + "rocky.9", + "rocky", + "rhel.9", + "rhel", + "linux", + "unix", + "any", + "base" + ], + "rocky.9-arm64": [ + "rocky.9-arm64", + "rocky.9", + "rocky-arm64", + "rhel.9-arm64", + "rocky", + "rhel.9", + "rhel-arm64", + "rhel", + "linux-arm64", + "linux", + "unix-arm64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9-x64", + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], "sles": [ "sles", "linux", @@ -7032,4 +7148,4 @@ "any", "base" ] -} \ No newline at end of file +} diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props --- dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props 2021-08-04 08:28:56.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtimeGroups.props 2021-08-12 10:25:53.522751516 -0700 @@ -50,6 +50,14 @@ false + + rhel + x64;arm64 + 8;9 + true + false + + linux x64;x86;arm;armel;arm64 diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json --- dotnet-v5.0.206-SDK-orig/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json 2021-08-04 08:28:56.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-runtime.208e377a5329ad6eb1db5e5fb9d4590fa50beadd/src/libraries/pkg/Microsoft.NETCore.Platforms/runtime.json 2021-08-12 10:25:18.274296239 -0700 @@ -1955,6 +1955,63 @@ "rhel-x64" ] }, + "rocky": { + "#import": [ + "rhel" + ] + }, + "rocky-arm64": { + "#import": [ + "rocky", + "rhel-arm64" + ] + }, + "rocky-x64": { + "#import": [ + "rocky", + "rhel-x64" + ] + }, + "rocky.8": { + "#import": [ + "rocky", + "rhel.8" + ] + }, + "rocky.8-arm64": { + "#import": [ + "rocky.8", + "rocky-arm64", + "rhel.8-arm64" + ] + }, + "rocky.8-x64": { + "#import": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64" + ] + }, + "rocky.9": { + "#import": [ + "rocky", + "rhel.9" + ] + }, + "rocky.9-arm64": { + "#import": [ + "rocky.9", + "rocky-arm64", + "rhel.9-arm64" + ] + }, + "rocky.9-x64": { + "#import": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64" + ] + }, "sles": { "#import": [ "linux" @@ -3121,4 +3178,4 @@ ] } } -} \ No newline at end of file +} diff -Naurp dotnet-v5.0.206-SDK-orig/src/dotnet-sdk.a8e1d9cb37e54f08f58fce93af19378607332973/src/Layout/toolset-tasks/Enumerations/BuildPlatform.cs dotnet-v5.0.206-SDK/src/dotnet-sdk.a8e1d9cb37e54f08f58fce93af19378607332973/src/Layout/toolset-tasks/Enumerations/BuildPlatform.cs --- dotnet-v5.0.206-SDK-orig/src/dotnet-sdk.a8e1d9cb37e54f08f58fce93af19378607332973/src/Layout/toolset-tasks/Enumerations/BuildPlatform.cs 2021-08-04 08:29:23.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/dotnet-sdk.a8e1d9cb37e54f08f58fce93af19378607332973/src/Layout/toolset-tasks/Enumerations/BuildPlatform.cs 2021-08-12 10:23:13.657686667 -0700 @@ -15,6 +15,7 @@ namespace Microsoft.DotNet.Cli.Build.Fra Debian = 8, Fedora = 9, OpenSuse = 10, - FreeBSD = 11 + FreeBSD = 11, + Rocky = 12, } } diff -Naurp dotnet-v5.0.206-SDK-orig/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/compiler/resources/runtime.json dotnet-v5.0.206-SDK/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/compiler/resources/runtime.json --- dotnet-v5.0.206-SDK-orig/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/compiler/resources/runtime.json 2021-08-04 08:29:21.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/NuGet.Core.FuncTests/Dotnet.Integration.Test/compiler/resources/runtime.json 2021-08-12 10:22:44.973316243 -0700 @@ -332,6 +332,13 @@ "#import": [ "centos.7", "centos-x64", "rhel.7-x64" ] }, + "rocky": { + "#import": [ "rhel" ] + }, + "rocky-x64": { + "#import": [ "rocky", "rhel-x64" ] + }, + "debian": { "#import": [ "linux" ] }, @@ -778,6 +785,13 @@ "#import": [ "centos.7-corert", "centos-x64-corert", "centos.7-x64" ] }, + "rocky-corert": { + "#import": [ "rel-corert", "rocky" ] + }, + "rocky-x64-corert": { + "#import": [ "rocky-corert", "rhel-x64-corert", "rocky-x64" ] + }, + "debian-corert": { "#import": [ "linux-corert", "debian" ] }, diff -Naurp dotnet-v5.0.206-SDK-orig/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/TestUtilities/Test.Utility/compiler/resources/runtime.json dotnet-v5.0.206-SDK/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/TestUtilities/Test.Utility/compiler/resources/runtime.json --- dotnet-v5.0.206-SDK-orig/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/TestUtilities/Test.Utility/compiler/resources/runtime.json 2021-08-04 08:29:21.000000000 -0700 +++ dotnet-v5.0.206-SDK/src/nuget.client.d525b0e670f3b6cbd5c73a35f04730a9f658c852/test/TestUtilities/Test.Utility/compiler/resources/runtime.json 2021-08-12 10:21:59.116724394 -0700 @@ -332,6 +332,13 @@ "#import": [ "centos.7", "centos-x64", "rhel.7-x64" ] }, + "rocky": { + "#import": [ "rhel" ] + }, + "rocky-x64": { + "#import": [ "rocky", "rhel-x64" ] + }, + "debian": { "#import": [ "linux" ] }, @@ -778,6 +785,13 @@ "#import": [ "centos.7-corert", "centos-x64-corert", "centos.7-x64" ] }, + "rocky-corert": { + "#import": [ "rel-corert", "rocky" ] + }, + "rocky-x64-corert": { + "#import": [ "rocky-corert", "rhel-x64-corert", "rocky-x64" ] + }, + "debian-corert": { "#import": [ "linux-corert", "debian" ] },