Skip to content

Commit c085c1e

Browse files
committed
[net11.0] Bump minimum library version for .NET 11.
This will eventually become 27.0, when .NET 11 goes stable (for now there's no Xcode 26.0 support in .NET 11, only Xcode 26.1).
1 parent ce85d8e commit c085c1e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Make.versions

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ MACCATALYST_NUGET_OS_VERSION=26.1
2828

2929
# The following are the OS versions we first supported with the current .NET version.
3030
# These versions must *not* change with minor .NET updates, only major .NET releases.
31-
IOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
32-
TVOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
33-
MACOS_TARGET_PLATFORM_VERSION_LIBRARY=26.0
34-
MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=26.0
31+
IOS_TARGET_PLATFORM_VERSION_LIBRARY=26.1
32+
TVOS_TARGET_PLATFORM_VERSION_LIBRARY=26.1
33+
MACOS_TARGET_PLATFORM_VERSION_LIBRARY=26.1
34+
MACCATALYST_TARGET_PLATFORM_VERSION_LIBRARY=26.1
3535

3636
# 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:
3737
# * We release support for iOS 14.5 with .NET 6

tools/common/SdkVersions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ static class SdkVersions {
4343
public const string TargetPlatformVersionExecutablemacOS = "26.1";
4444
public const string TargetPlatformVersionExecutableMacCatalyst = "26.1";
4545

46-
public const string TargetPlatformVersionLibraryiOS = "26.0";
47-
public const string TargetPlatformVersionLibrarytvOS = "26.0";
48-
public const string TargetPlatformVersionLibrarymacOS = "26.0";
49-
public const string TargetPlatformVersionLibraryMacCatalyst = "26.0";
46+
public const string TargetPlatformVersionLibraryiOS = "26.1";
47+
public const string TargetPlatformVersionLibrarytvOS = "26.1";
48+
public const string TargetPlatformVersionLibrarymacOS = "26.1";
49+
public const string TargetPlatformVersionLibraryMacCatalyst = "26.1";
5050

5151
public static Version OSXVersion { get { return new Version (OSX); } }
5252
public static Version iOSVersion { get { return new Version (iOS); } }

0 commit comments

Comments
 (0)