Skip to content

Commit

Permalink
[dotnet] Bump minimum library versions for .NET 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Nov 6, 2024
1 parent e519806 commit b438b38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Make.versions
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions tools/common/SdkVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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); } }
Expand Down

0 comments on commit b438b38

Please sign in to comment.