From b438b38a1f82e8ba722db372ae1088723ddc467b Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 6 Nov 2024 08:29:06 +0100 Subject: [PATCH] [dotnet] Bump minimum library versions for .NET 10. --- Make.versions | 8 ++++---- tools/common/SdkVersions.cs | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Make.versions b/Make.versions index f86394b69a29..080d0f7926f9 100644 --- a/Make.versions +++ b/Make.versions @@ -73,10 +73,10 @@ MACCATALYST_NUGET_OS_VERSION=18.1 # The following are the OS versions we first supported with the current .NET version. # These versions must *not* change with minor .NET updates, only major .NET releases. -IOS_TARGET_PLATFORM_VERSION_LIBRARY=18.0 -TVOS_TARGET_PLATFORM_VERSION_LIBRARY=18.0 -MACOS_TARGET_PLATFORM_VERSION_LIBRARY=15.0 -MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=18.0 +IOS_TARGET_PLATFORM_VERSION_LIBRARY=18.1 +TVOS_TARGET_PLATFORM_VERSION_LIBRARY=18.1 +MACOS_TARGET_PLATFORM_VERSION_LIBRARY=15.1 +MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=18.1 # In theory we should define the default platform version if it's not specified in the TFM. The default should not change for a given .NET version: # * We release support for iOS 14.5 with .NET 6 diff --git a/tools/common/SdkVersions.cs b/tools/common/SdkVersions.cs index efa177335e90..e7869a039a93 100644 --- a/tools/common/SdkVersions.cs +++ b/tools/common/SdkVersions.cs @@ -62,10 +62,10 @@ static class SdkVersions { public const string TargetPlatformVersionExecutablemacOS = "15.1"; public const string TargetPlatformVersionExecutableMacCatalyst = "18.1"; - public const string TargetPlatformVersionLibraryiOS = "18.0"; - public const string TargetPlatformVersionLibrarytvOS = "18.0"; - public const string TargetPlatformVersionLibrarymacOS = "15.0"; - public const string TargetPlatformVersionLibraryMacCatalyst = "18.0"; + public const string TargetPlatformVersionLibraryiOS = "18.1"; + public const string TargetPlatformVersionLibrarytvOS = "18.1"; + public const string TargetPlatformVersionLibrarymacOS = "15.1"; + public const string TargetPlatformVersionLibraryMacCatalyst = "18.1"; public static Version OSXVersion { get { return new Version (OSX); } } public static Version iOSVersion { get { return new Version (iOS); } }