Skip to content

Commit dbfebef

Browse files
authored
[net8.0-xcode15] Bump default target platform version to Xcode 15's OS versions. (#18815)
Our .NET 8 release will launch with Xcode 15 support, so bump the default target platform version to the corresponding Xcode 15 OS versions.
1 parent a772b4d commit dbfebef

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Make.versions

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ MACCATALYST_NUGET_OS_VERSION=17.0
7979
# Basically: this should be the last OS version of the platform in question when the current major .NET version is first released to stable.
8080
# Ref: https://github.com/dotnet/designs/blob/8e6394406d44f75f30ea2259a425cb9e38d75b69/accepted/2020/net5/net5.md#os-versions
8181

82-
DEFAULT_TARGET_PLATFORM_VERSION_IOS=16.1
83-
DEFAULT_TARGET_PLATFORM_VERSION_TVOS=16.1
84-
DEFAULT_TARGET_PLATFORM_VERSION_WATCHOS=9.1
85-
DEFAULT_TARGET_PLATFORM_VERSION_MACOS=13.0
86-
DEFAULT_TARGET_PLATFORM_VERSION_MACCATALYST=16.1
82+
DEFAULT_TARGET_PLATFORM_VERSION_IOS=17.0
83+
DEFAULT_TARGET_PLATFORM_VERSION_TVOS=17.0
84+
DEFAULT_TARGET_PLATFORM_VERSION_WATCHOS=10.0
85+
DEFAULT_TARGET_PLATFORM_VERSION_MACOS=14.0
86+
DEFAULT_TARGET_PLATFORM_VERSION_MACCATALYST=17.0
8787

8888
# .NET 7 versions are bumped using maestro.
8989

tools/common/SdkVersions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ static class SdkVersions {
4949
public const string MaxWatchDeploymentTarget = "10.0";
5050
public const string MaxTVOSDeploymentTarget = "17.0";
5151

52-
public const string DefaultTargetPlatformVersioniOS = "16.1";
53-
public const string DefaultTargetPlatformVersiontvOS = "16.1";
54-
public const string DefaultTargetPlatformVersionmacOS = "13.0";
55-
public const string DefaultTargetPlatformVersionMacCatalyst = "16.1";
52+
public const string DefaultTargetPlatformVersioniOS = "17.0";
53+
public const string DefaultTargetPlatformVersiontvOS = "17.0";
54+
public const string DefaultTargetPlatformVersionmacOS = "14.0";
55+
public const string DefaultTargetPlatformVersionMacCatalyst = "17.0";
5656

5757
public static Version OSXVersion { get { return new Version (OSX); } }
5858
public static Version iOSVersion { get { return new Version (iOS); } }

0 commit comments

Comments
 (0)