Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Make.versions
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ MACCATALYST_NUGET_OS_VERSION=17.2
# Basically: this should be the last OS version of the platform in question when the current major .NET version is first released to stable.
# Ref: https://github.com/dotnet/designs/blob/8e6394406d44f75f30ea2259a425cb9e38d75b69/accepted/2020/net5/net5.md#os-versions

DEFAULT_TARGET_PLATFORM_VERSION_IOS=17.0
DEFAULT_TARGET_PLATFORM_VERSION_TVOS=17.0
DEFAULT_TARGET_PLATFORM_VERSION_WATCHOS=10.0
DEFAULT_TARGET_PLATFORM_VERSION_MACOS=14.0
DEFAULT_TARGET_PLATFORM_VERSION_MACCATALYST=17.0
DEFAULT_TARGET_PLATFORM_VERSION_IOS=17.2
DEFAULT_TARGET_PLATFORM_VERSION_TVOS=17.2
DEFAULT_TARGET_PLATFORM_VERSION_WATCHOS=10.2
DEFAULT_TARGET_PLATFORM_VERSION_MACOS=14.2
DEFAULT_TARGET_PLATFORM_VERSION_MACCATALYST=17.2

# .NET 7 versions are bumped using maestro.

8 changes: 4 additions & 4 deletions tools/common/SdkVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ static class SdkVersions {
public const string MaxWatchDeploymentTarget = "10.2";
public const string MaxTVOSDeploymentTarget = "17.2";

public const string DefaultTargetPlatformVersioniOS = "17.0";
public const string DefaultTargetPlatformVersiontvOS = "17.0";
public const string DefaultTargetPlatformVersionmacOS = "14.0";
public const string DefaultTargetPlatformVersionMacCatalyst = "17.0";
public const string DefaultTargetPlatformVersioniOS = "17.2";
public const string DefaultTargetPlatformVersiontvOS = "17.2";
public const string DefaultTargetPlatformVersionmacOS = "14.2";
public const string DefaultTargetPlatformVersionMacCatalyst = "17.2";

public static Version OSXVersion { get { return new Version (OSX); } }
public static Version iOSVersion { get { return new Version (iOS); } }
Expand Down