Note
- Xcode 26.6 is required with this release. Xcode 26.6 requires macOS 26.2+ (Tahoe).
This is a servicing release to the previous .NET 10 release.
These are the base SDKs that add support for the platforms in question, for MAUI (which is built on top of our SDKs), go here instead: https://docs.microsoft.com/en-us/dotnet/maui/.
This release consists of the following versions:
- iOS: 26.5.10315
- tvOS: 26.5.10315
- macOS: 26.5.10315
- Mac Catalyst: 26.5.10315
Installation
You can use workload set version 10.0.302.1 in order to install these versions of the SDKs.
Please make sure to be using the latest .NET SDK 10.0.302 before issuing the dotnet workload install command below. You can validate your installed dotnet version using dotnet --version do make sure it shows 10.0.302 before proceeding.
dotnet workload install <workload id(s)> --version 10.0.302.1Available workload ids
- ios
- tvos
- macos
- maccatalyst
- android (see https://github.com/dotnet/android)
- maui (see https://github.com/dotnet/maui)
Example command installing all listed workloads.
dotnet workload install ios tvos macos maccatalyst maui android --version 10.0.302.1You can use dotnet workload --info to validate the workload versions installed in your system.
Full release notes: https://github.com/dotnet/macios/wiki/.NET-10-release-notes
Preview of Xcode 27 support
This release include preview support for Xcode 27.
To build with support for Xcode 27 and any new API bindings we've implemented so far, append 27.0 to the target framework in the project file. Additionally, ignore a warning about using the Xcode 27.0 preview. Note: .NET 10 must be used, we don't have .NET 11 builds with Xcode 27 support yet.
Example:
<PropertyGroup>
<TargetFramework>net10.0-ios27.0</TargetFramework>
<NoWarn>$(NoWarn);XCODE_27_0_PREVIEW</NoWarn>
</PropertyGroup>This requires installing Xcode 27.0 beta 4.
See .NET 10 - Xcode 27.0 Beta 4 support for the release notes for the support for Xcode 27.
What's Changed
- [release/10.0.1xx] [build] Fix NuGet migration race condition workaround by @rolfbjarne in #25996
- [release/10.0.1xx] [dotnet] Update Xcode 27.0 packages for .NET 10. by @dalexsoto in #26317
- [release/10.0.1xx] Update dependencies from dotnet/dotnet by @dotnet-maestro[bot] in #26355
Full Changelog: dotnet-10.0.1xx-xcode26.6-10301...dotnet-10.0.1xx-xcode26.5-10315