From 0133d9bccf6c3cb1aa5eedc1906fd1020b07498a Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 9 Dec 2025 10:15:24 +0100 Subject: [PATCH] [net11.0] Drop support for .NET 9. --- Make.versions | 10 ------ eng/Version.Details.xml | 51 --------------------------- tests/dotnet/UnitTests/ProjectTest.cs | 2 +- 3 files changed, 1 insertion(+), 62 deletions(-) diff --git a/Make.versions b/Make.versions index cf6110cafc57..94f051cc5c58 100644 --- a/Make.versions +++ b/Make.versions @@ -110,16 +110,6 @@ SUPPORTED_API_VERSIONS_MACCATALYST=$(DOTNET_TFM)-$(MACCATALYST_NUGET_OS_VERSION) # Add older versions here! -SUPPORTED_API_VERSIONS_IOS+=net9.0-18.0 -SUPPORTED_API_VERSIONS_TVOS+=net9.0-18.0 -SUPPORTED_API_VERSIONS_MACOS+=net9.0-15.0 -SUPPORTED_API_VERSIONS_MACCATALYST+=net9.0-18.0 - -SUPPORTED_API_VERSIONS_IOS+=net9.0-26.0 -SUPPORTED_API_VERSIONS_TVOS+=net9.0-26.0 -SUPPORTED_API_VERSIONS_MACOS+=net9.0-26.0 -SUPPORTED_API_VERSIONS_MACCATALYST+=net9.0-26.0 - SUPPORTED_API_VERSIONS_IOS+=net10.0-26.0 SUPPORTED_API_VERSIONS_TVOS+=net10.0-26.0 SUPPORTED_API_VERSIONS_MACOS+=net10.0-26.0 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 786e6a545955..69d13e322e11 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -25,57 +25,6 @@ https://github.com/dotnet/dotnet 29eefe27a350eb8b0bcbababa7863a0d1086295d - - - https://github.com/dotnet/macios - 4681bf928d70aa79cff2c33ad324b3be9c62b66d - - - https://github.com/dotnet/macios - 4681bf928d70aa79cff2c33ad324b3be9c62b66d - - - https://github.com/dotnet/macios - 4681bf928d70aa79cff2c33ad324b3be9c62b66d - - - https://github.com/dotnet/macios - 4681bf928d70aa79cff2c33ad324b3be9c62b66d - - - - https://github.com/xamarin/xamarin-macios - 797d30720e5e629d23eb146935da94cb1b61047e - - - https://github.com/xamarin/xamarin-macios - 797d30720e5e629d23eb146935da94cb1b61047e - - - https://github.com/xamarin/xamarin-macios - 797d30720e5e629d23eb146935da94cb1b61047e - - - https://github.com/xamarin/xamarin-macios - 797d30720e5e629d23eb146935da94cb1b61047e - - - - https://github.com/dotnet/macios - 4177c9d9590857cfb2617fd7a7ef3d5e1de48ed3 - - - https://github.com/dotnet/macios - 4177c9d9590857cfb2617fd7a7ef3d5e1de48ed3 - - - https://github.com/dotnet/macios - 4177c9d9590857cfb2617fd7a7ef3d5e1de48ed3 - - - https://github.com/dotnet/macios - 4177c9d9590857cfb2617fd7a7ef3d5e1de48ed3 - https://github.com/dotnet/macios diff --git a/tests/dotnet/UnitTests/ProjectTest.cs b/tests/dotnet/UnitTests/ProjectTest.cs index e5ade9ac2e5f..4215043412e0 100644 --- a/tests/dotnet/UnitTests/ProjectTest.cs +++ b/tests/dotnet/UnitTests/ProjectTest.cs @@ -2078,7 +2078,7 @@ public void BuildNet8_0App (ApplePlatform platform, string runtimeIdentifiers) [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-x64")] public void BuildNet9_0App (ApplePlatform platform, string runtimeIdentifiers) { - BuildSupportedNetVersionApp (platform, runtimeIdentifiers, 9); + BuildUnsupportedNetVersionApp (platform, runtimeIdentifiers, 9, isFuture: false); } [Test]