Note
Xcode 26.0 is required with this release. Xcode 26.0 requires macOS 15.6+.
This is a servicing release to the previous .NET 9 release, mainly adding support for Xcode 26.0.
Note: 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/.
Versions
This release consists of the following versions:
Installation
You can use workload set version 9.0.306
in order to install these versions of the SDKs.
Please make sure to be using the latest .NET SDK 9.0.306
before issuing the dotnet workload install
command below. You can
validate your installed dotnet version using dotnet --version
do make sure it shows 9.0.306
or greater before proceeding.
dotnet workload install <workload id(s)> --version 9.0.306
Available 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 9.0.306
You can use dotnet workload --info
to validate the workload versions installed in your system.
Breaking changes
Resource validation
We've added validation to detect if multiple different resources targets the same location in the app bundle, in which case we'll now:
- Issue a build warning when this situation is detected.
- Not copy any of the resources into the app bundle (previous behavior was undefined, any of the resources could end up winning).
One scenario where this has known to cause problems is in MAUI projects, when:
- There are resources in the Platforms/iOS/Resources directory.
- The project file adds any of these resources to the build, as
MauiImage
items for instance.
This leads to duplicates, because:
- All resources in the Platforms/iOS/Resources directory are added to the build by default.
- MAUI will process (resize)
MauiImage
items, and add those resized images to the build.
There are multiple ways to fix this, here are a few:
-
Remove all
MauiImage
from theBundleResource
item group (where they were added by default):<ItemGroup> <!-- ... --> <MauiImage Include="Platforms/iOS/Resources/LastMauiImage.png" /> <BundleResource Remove="@(MauiImage)" /> </ItemGroup>
-
Move the
MauiImage
items to a different directory (sayPlatforms/iOS/MauiImages
, orResources/Images
).
References:
- #19029
- https://github.com/dotnet/macios/issues/24014
- https://github.com/dotnet/macios/blob/main/dotnet/DefaultCompilationIncludes.md
What's Changed
- .NET: Add AppBundleResourcePrefix property to unify resource prefix properties by @Copilot in #22840
- [Accessibility] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23480
- [AccessorySetupKit] Introduce a default ctor for a few classes. by @rolfbjarne in #23040
- [AccessorySetupKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23528
- [Accounts] Fix Action based delegate signatures. by @mandel-macaque in #23244
- [Accounts] Fix nullability on delegates. by @mandel-macaque in #23063
- [AppClip] Fix Action based delegate signatures. by @mandel-macaque in #23245
- [AppKit] Fix Action based delegate signatures. by @mandel-macaque in #23246
- [AppKit] Fix return type for NSStoryboard.InstantiateController / InstantiateInitialController. Fixes #23373. by @rolfbjarne in #23400
- [AppKit] NSApplication.ApplicationShouldSuppressHighDynamicRangeContent is readonly. by @rolfbjarne in #23415
- [AppKit] Update bindings to Xcode 26.0 Beta 5 by @dalexsoto in #23539
- [ArKit] Fix managed delegate signatures. by @mandel-macaque in #23230
- [ARKit] Fix nullability in delegate signatures. by @mandel-macaque in #23061
- [ARKit] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23687
- [AudioToolbox] Improve AudioFile API a little bit. by @rolfbjarne in #23745
- [AudioUnit] Fix typo: AudioUnitSubType.Revert2 -> AudioUnitSubType.Reverb2. by @rolfbjarne in #23414
- [AuthenticationServices] Fix nullability in the delegates. by @mandel-macaque in #23080
- [AuthenticationServices] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23529
- [AutomaticAssessmentConfiguration] Update bindings to Xcode 26 beta 3. by @rolfbjarne in #23371
- [AVFoundation] Fix enum value for AVAssetExportSessionPreset to be in the right location. Fixes #23267. by @rolfbjarne in #23268
- [AVFoundation] Fix nullability in some delegate signatures. by @mandel-macaque in #23062
- [AVFoundation] Update bindings to Xcode 26 beta 1-6. by @rolfbjarne in #23437
- [AVKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23541
- [AVRouting] Update bindings to Xcode 26 beta 1-5. by @rolfbjarne in #23436
- [BackgroundTasks] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23700
- [bgen] Add iOSAttribute and MacAttribute to the binding attributes. by @rolfbjarne in #23806
- [bgen] Fix strong enums with value type backing fields. by @rolfbjarne in #23077
- [bgen] Improve the BI1078 error message to include the type name. by @rolfbjarne in #23349
- [bgen] Make BI1075 show which property causes the error. by @rolfbjarne in #23502
- [bgen] Stop fail-fast on exceptions, and instead keep going, trying to report as many as possible. by @rolfbjarne in #23258
- [bgen] Undo failed docid resolutions from the C# compiler in binding code. by @rolfbjarne in #23560
- [BrowserEngineCore] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23659
- [BrowserEngineKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23570
- [CAAnimation/QuartzCore] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23697
- [CallKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23546
- [CarPlay] Update bindings to Xcode 26 Beta 1 - 5 by @dalexsoto in #23536
- [Cinematic] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23561
- [ClockKit] Remove this framework, it's a watchOS-only framework. by @rolfbjarne in #23157
- [CloudKit] Fix all the delegate signatures. by @mandel-macaque in #23090
- [CloudKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23582
- [Contacts] Fix delegate signatures. by @mandel-macaque in #23092
- [CoreAudio] Don't bind this framework. by @rolfbjarne in #23695
- [CoreData] Fix delegate signatures. by @mandel-macaque in #23135
- [CoreFoundation] Update to Xcode 26 beta 1-4. by @rolfbjarne in #23469
- [CoreGraphics] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23652
- [CoreImage] Generate the CIFormat convenience enum. Fixes #23056. by @rolfbjarne in #23156
- [CoreImage] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23702
- [CoreLocation] Fix delegate signatures. by @mandel-macaque in #23137
- [CoreLocation] Make CLLocationManager.IsMonitoringAvailable(Type) available on macOS. by @rolfbjarne in #23356
- [CoreLocation] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23547
- [CoreMedia] Bind CMFormatDescriptionExtensions and related APIs. Fixes #23239. by @rolfbjarne in #23259
- [CoreMedia] Can't inheritdoc from APIs that aren't public. by @rolfbjarne in #23524
- [CoreMedia] Update to Xcode 26 beta 1-7. by @rolfbjarne in #23733
- [CoreMidi] Add a GetCheckedHandle method in a couple of classes, and use it. by @rolfbjarne in #22995
- [CoreMidi] Fix delegate signatures. by @mandel-macaque in #23140
- [CoreML] Fix delegate signatures. by @mandel-macaque in #23138
- [CoreMotion] Fix delegate signatures. by @mandel-macaque in #23141
- [CoreNFC] Update delegate signatures. by @mandel-macaque in #23146
- [CoreNFC] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23481
- [CoreSpotligh] Fix all delegate signatures. by @mandel-macaque in #23147
- [CoreTelephony] Adjust availability of CTCellularPlanProvisioning.AddPlan for Mac Catalyst. by @rolfbjarne in #23383
- [CoreTelephony] Update bindings to Xcode 26 beta 1-3. by @rolfbjarne in #23295
- [CoreText] Generate CTFontManager constants. by @rolfbjarne in #23354
- [CoreVideo] Update to Xcode 26 beta 1-7. by @rolfbjarne in #23734
- [DeviceDiscoveryExtension] Update bindings to Xcode 26 beta 1-4. by @rolfbjarne in #23420
- [DeviceDiscoveryUI] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23482
- [docs] Add docs on how we produce releases for minor Xcode bumps. by @rolfbjarne in #22964
- [docs] Add entry to release check list about letting MAUI know about any new package names. by @rolfbjarne in #23160
- [docs] Document 'CompressBindingResourcePackage'. by @rolfbjarne in #22978
- [docs] Document BundleCreateDump. by @rolfbjarne in #23854
- [docs] Fix a few relative links. by @rolfbjarne in #22994
- [docs] Update docs about build items and properties with changes in the docs-mobile repository. by @rolfbjarne in #22986
- [dotnet] Add support for the @(LinkerArgument) item group to pass arguments to the native linker. Fixes #21331. by @rolfbjarne in #23468
- [dotnet] Fix computing _MonoComponents for Windows remote builds. Fixes #21244. by @rolfbjarne in #22929
- [dotnet] Set ApplicationTitle correctly for desktop apps. Fixes #20615. by @rolfbjarne in #22913
- [dotnet] Treat MtouchHttpClientClient='HttpClientHandler' as UseNativeHttpHandler='false'. by @rolfbjarne in #23261
- [eng] Update with the latest .NET 8 packages. by @rolfbjarne in #22953
- [EventKit] Fix delegate signatures. by @mandel-macaque in #23148
- [ExtensionKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23483
- [FileProvider] Fix delegate signatures. by @mandel-macaque in #23149
- [FileProvider] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23567
- [Foundation] Avoid calling ToString more than once on headers and their values. by @rolfbjarne in #23825
- [Foundation] Fix a few of NSAttributedString's Create methods to return null in case of failure. Fixes #23584. by @rolfbjarne in #23600
- [Foundation] Make it possible to customize the X509ChainPolicy when validating certificates in NSUrlSessionHandler. Fixes #23764. by @rolfbjarne in #23767
- [Foundation] Update bindings to Xcode 26 beta 1-4. by @rolfbjarne in #23421
- [Foundation] Update delegates signatures to match nullability. by @mandel-macaque in #23161
- [FSKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23562
- [GameController] Update bindings to Xcode 26.0 Beta 1 - 4 by @dalexsoto in #23476
- [GameKit] Fix delegate signatures for nullability. by @mandel-macaque in #23164
- [GameKit] Update bindings to Xcode 26 Beta 1 to 4 by @dalexsoto in #23474
- [GameSave] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23563
- [GLKit] Fix delegates in glkit. by @mandel-macaque in #23162
- [HealthKit] Fix delegate signatures for nullability. by @mandel-macaque in #23174
- [HealthKit] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23696
- [ImageIO] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23484
- [Intents] Fix delegate signatures for delegates. by @mandel-macaque in #23175
- [JavascriptCore] Fix delegate signatures for nullability. by @mandel-macaque in #23176
- [LocalAuthentication] Fix delegate signatures for nullability. by @mandel-macaque in #23177
- [LocalAuthentication] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23564
- [MapKit] Fix delegate signatures for nullability. by @mandel-macaque in #23180
- [MapKit] Update bindings to Xcode 26 beta 1-3. by @rolfbjarne in #23308
- [MediaAccessibility] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23588
- [MediaExtension] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23699
- [MediaPlayer] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23457
- [Messages] Update to Xcode 26 beta 2-4. by @rolfbjarne in #23470
- [messaging] Fixed environment variables logic on Build Agent by @mauroa in #23676
- [Metal] Fix delegate signatures for nullability. by @mandel-macaque in #23181
- [Metal] Update to Xcode 26 beta 5. by @rolfbjarne in #23549
- [MetalFX] Update bindings to Xcode 26 beta 1-7. by @rolfbjarne in #23426
- [MetalPerformanceShaders] Bind missing APIs. by @rolfbjarne in #23785
- [MetalPerformanceShadersGraph] Update bindings to Xcode 26 beta 1-5. by @rolfbjarne in #23417
- [MetricKit] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23703
- [msbuild/dotnet] Add support for 'MonoUseCompressedInterfaceBitmap' to enable compressed interface bitmaps. by @rolfbjarne in #23834
- [msbuild] Add note to how to update .NET for Xamarin.Messaging.Build by @rolfbjarne in #22788
- [msbuild] Add validation for conflicting resources. Fixes #19029. by @rolfbjarne in #22996
- [msbuild] Bump messaging to get a validation fix for remote builds. by @rolfbjarne in #23331
- [msbuild] Bump messaging to get improved diagnostics when checksum validation fails. by @rolfbjarne in #23257
- [msbuild] Bump some package versions from 17.13.1 to 17.13.9. by @rolfbjarne in #23109
- [msbuild] Compute DOTNET_DiagnosticPorts using MSBuild properties. by @rolfbjarne in #23429
- [msbuild] Correctly handle 'SkipCodesignItems' that are directories. Fixes #19222. by @rolfbjarne in #22962
- [msbuild] Don't connect to a remote mac for library projects that are bundling original resources. by @rolfbjarne in #22984
- [msbuild] Don't warn about repeated files when looking for duplicated resources. by @rolfbjarne in #23250
- [msbuild] Enable design-time builds for binding projects when bundling original resources. Fixes #10148. by @rolfbjarne in #22985
- [msbuild] Enable signing by default for all platforms. Fixes #18469. by @rolfbjarne in #20824
- [msbuild] Enable warnings as errors, and fix resulting errors. by @rolfbjarne in #23001
- [msbuild] Fix build break. by @rolfbjarne in #22958
- [msbuild] Fix FilterStaticFrameworks task to support custom framework binary names by @Copilot in #23045
- [msbuild] Fix format arguments to error message. by @rolfbjarne in #23031
- [msbuild] Fix parsing bundler verbosity. by @rolfbjarne in #23845
- [msbuild] Improve diagnostics when we fail to process an xcframework. by @rolfbjarne in #23252
- [msbuild] Make sure that non-iOS platforms build successfully on non-macOS platforms. Fixes #23101. by @rolfbjarne in #23158
- [msbuild] Merge System.Formats.Asn1.dll ito the task assembly as well. by @rolfbjarne in #23314
- [msbuild] Refactor the ACTool task a bit to simplify code. by @rolfbjarne in #22980
- [msbuild] Remove unnecessary newline at the end of messages. by @rolfbjarne in #23142
- [msbuild] The App Groups entitlement is available on all platforms. by @rolfbjarne in #23841
- [msbuild] Unify and improve code to validate entitlements. by @rolfbjarne in #22794
- [msbuild] Update ilrepack. by @rolfbjarne in #23000
- [msbuild] Use the latest 17.13.* versions of the Microsoft.Build.* packages. by @rolfbjarne in #23335
- [MultipeerConnectivity] Fix delegates signatures for nullability. by @mandel-macaque in #23183
- [NearbyInteraction] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23586
- [Network] Call the correct P/Invoke in NWEstablishmentReport.EnumarateResolutionReports. by @rolfbjarne in #23289
- [Network] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23583
- [NetworkExtension] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23698
- [NetworkExtensions] Fix delegate signatures for nullability. by @mandel-macaque in #23185
- [NSAction] Unify code between platforms. by @rolfbjarne in #23309
- [PassKit] Fix delegate signatures for nullability. by @mandel-macaque in #23186
- [PassKit] Update bindings to Xcode 26.0 Beta 1 - 5 by @dalexsoto in #23574
- [PencilKit] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23581
- [Phase] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23569
- [Photos] Fix delegate signatures for nullability. by @mandel-macaque in #23204
- [Photos] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23571
- [QuickLook] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23485
- [release/9.0.1xx] Bring messaging and build agent fixes by @dalexsoto in #23746
- [release/9.0.1xx] Merge main into release/9.0.1xx. by @rolfbjarne in #23868
- [release/9.0.1xx][xcode26.0] Bump to Xcode 26.0.1 stable version by @dalexsoto in #23872
- [ReplayKit] Fix delegate signatures for nullability. by @mandel-macaque in #23205
- [runtime/src] Expand NSObject.Flags to 32 bits (uint). by @rolfbjarne in #22981
- [runtime] Call mono_jit_cleanup upon exit. by @rolfbjarne in #23446
- [runtime] Fix storing additional data for NSObject in native code. Fixes #23684. by @rolfbjarne in #23780
- [runtime] Rework how we call 'ConformsToProtocol' a little bit. by @rolfbjarne in #23002
- [runtime] Use Mono's v2 GCHandle API. by @rolfbjarne in #23447
- [SafariServices] Update bindings to Xcode 26 beta 1-4. by @rolfbjarne in #23377
- [SceneKit] Fix delegate signatures for nullability. by @mandel-macaque in #23206
- [ScreenCaptureKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23566
- [Security] Update bindings to Xcode 26 beta 1-7. by @rolfbjarne in #23714
- [SensitiveContentAnalysis] Update to Xcode 26 beta 1-7. by @rolfbjarne in #23711
- [SensorKit] Update bindings to Xcode 26.0 Beta 1 - 5 by @dalexsoto in #23595
- [Speech] Update to Xcode 26 beta 1-7. by @rolfbjarne in #23716
- [SpriteKit] Fix delegate signatures for nullability. by @mandel-macaque in #23207
- [src/bgen] Generate xml docs for models if they don't already have docs. by @rolfbjarne in #23459
- [src/bgen] Generate xml docs for notification fields. by @rolfbjarne in #23369
- [src/docs] Numerous fixes to the xml docs. by @rolfbjarne in #23531
- [src/introspection] Make introspection pass on device. by @rolfbjarne in #23272
- [src/runtime] Don't allow native code to resolve a weak reference for an object in the finalizer queue. by @rolfbjarne in #23072
- [src/runtime] Rework how we store data in NSObject. Fixes #23284. by @rolfbjarne in #23300
- [src] Add CGSize/CGPoint/CGRectDictionary. by @rolfbjarne in #23743
- [src] Add CVOpenGLESTexture.cs and CVOpenGLESTextureCache.cs to the build. by @rolfbjarne in #23329
- [src] Add support for storing and retrieving any struct in an NSData instance. by @rolfbjarne in #23720
- [src] Add validation to ensure we compile everything we have, and that we have everything we want to compile by @rolfbjarne in #23368
- [src] Clean up make logic / variables and compiler defines. by @rolfbjarne in #23340
- [src] Don't copy xml docs from the declaring type of a method with [DelegateName]. by @rolfbjarne in #23427
- [src] Don't use for enum fields. by @rolfbjarne in #23526
- [src] Explicity define IOS when building for Mac Catalyst. by @rolfbjarne in #23348
- [src] Fix 'cref' elements to be 'see' elements with a 'cref' attribute. by @rolfbjarne in #23565
- [src] Fix a few xml doc syntax errors / typos. by @rolfbjarne in #23296
- [src] Fix checking if a constraint implements INativeObject. Fixes #23070. by @rolfbjarne in #23110
- [src] Fix links to images in api xml docs. by @rolfbjarne in #23492
- [src] Generate default xml docs for interfaces for protocols. by @rolfbjarne in #23376
- [src] Improve a few deprecated messages. by @rolfbjarne in #23030
- [src] Misc NSString improvements. by @rolfbjarne in #22989
- [src] Remove redundant generated protocol docs. by @rolfbjarne in #23487
- [src] Remove some outdated docs about how our event model work. by @rolfbjarne in #23488
- [src] Significant upgrades to DictionaryContainer. by @rolfbjarne in #23724
- [src] Stop using the MONOTOUCH and IPHONE defines. by @rolfbjarne in #23310
- [src] Update code to honor the first rule of unsafe coding practices. by @rolfbjarne in #23835
- [StoreKit] Fix delegate signatures for nullability. by @mandel-macaque in #23208
- [StoreKit] Unmark the AppStore class as experimental. Fixes #23323. by @rolfbjarne in #23328
- [StoreKit] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23486
- [Symbols] Update to Xcode 26 beta 1-5. by @rolfbjarne in #23548
- [tools] Fix a few logging statements. by @rolfbjarne in #23106
- [tools] Make the dead code removal optimizer correctly handle unconditional branches. by @rolfbjarne in #23107
- [tools] Mark CoreNFC as available in the simulator. by @rolfbjarne in #23125
- [tools] Misc improvements to the autoformat script. by @rolfbjarne in #23713
- [tools] Use the apicompat tool to detect breaking changes. by @rolfbjarne in #23755
- [TouchController] Update bindings to Xcode 26.0 Beta 1 - 7 by @dalexsoto in #23691
- [Twitter] Fix delegate signatures for nullability. by @mandel-macaque in #23209
- [UIKit] Add the missing DidChangeSelection event to UITextField. by @rolfbjarne in #23047
- [UIKit] Fix delegate signatures for nullability. by @mandel-macaque in #23227
- [UIKit] Make sure to invoke the correct constructor. Fixes #23122. by @rolfbjarne in #23127
- [UIKit] Update bindings to Xcode 26.0 Beta 5 by @dalexsoto in #23538
- [VideoSubscriberAccount] Make VSCheckAccessOptionKeys public. by @rolfbjarne in #23493
- [VideoSubscriberAccount] Update to Xcode 26 beta 1-6. by @rolfbjarne in #23710
- [VideoToolbox] Update to Xcode 26 beta 1-7. by @rolfbjarne in #23723
- [Vision] Fix delegate signatures for nullability. by @mandel-macaque in #23228
- [vs] Disable build acceleration by @emaf in #23332
- [WebKit] Fix delegate signatures for nullaility. by @mandel-macaque in #23229
- [WebKit] Update bindings to Xcode 26 Beta 2 by @dalexsoto in #23255
- [WebKit] Update bindings to Xcode 26.0 Beta 5 by @dalexsoto in #23537
- [Windows] _BeforeUnpackLibraryResources - Delete all files in a single run by @emaf in #23441
- [Windows] Add inputs/outputs to _CreatePkgInfo by @emaf in #23553
- [Windows] Fix _CompileNativeExecutable inputs/outputs by @emaf in #23533
- [Windows] Make LinkNativeCode create output file by @emaf in #23534
- [Windows] Simplify LoadLinkerOutput by @emaf in #23473
- [Windows] Skip running tasks with no inputs by @emaf in #23458
- [xcode26.0] Add AppKit bindings for Xcode 26.0 Beta 1 to 4 by @dalexsoto in #23397
- [xcode26.0] Bump to Xcode 26 Stable by @dalexsoto in #23819
- [xcode26.0] Bump to Xcode 26.0 Beta 6 by @dalexsoto in #23633
- [xcode26.0] Bump to Xcode 26.0 Beta 7 by @dalexsoto in #23705
- [xcode26.0] Initial Xcode 26.0 support by @dalexsoto in #23013
- [xcode26.0] Make the Xcode 26 branch a prerelease branch. by @rolfbjarne in #23365
- [xcode26.0] Update AudioToolbox to beta 1-4. by @rolfbjarne in #23385
- [xcode26.0] Update AutomaticAssessmentConfiguration to beta 1. by @rolfbjarne in #23159
- [xcode26.0] Update BackgroundAssets to beta 1. by @rolfbjarne in #23167
- [xcode26.0] Update CoreML to beta 1. by @rolfbjarne in #23100
- [xcode26.0] Update documentation known failures. by @rolfbjarne in #23628
- [xcode26.0] Update EventKit to beta 1. by @rolfbjarne in #23098
- [xcode26.0] Update FSEvents (in CoreServices) to beta 1. by @rolfbjarne in #23099
- [xcode26.0] Update Messages to beta 1. by @rolfbjarne in #23155
- [xcode26.0] Update Metal to beta 1-4. by @rolfbjarne in #23355
- [xcode26.0] Update MetalKit to beta 1-4. by @rolfbjarne in #23419
- [xcode26.0] Update tests to use SceneDelegate by @dalexsoto in #23416
- [xcode26.0] Update to Xcode 26 Release Candidate by @dalexsoto in #23779
- [xcode26.0] Update UIKit bindings to Xcode 26.0 Beta 3 by @dalexsoto in #23350
- [xcode26.0] Update UIKit bindings to Xcode 26.0 Beta 4 by @dalexsoto in #23389
- [xcode26.0] Update WebKit bindings to Xcode 26.0 beta 3 by @dalexsoto in #23344
- [xcode26] Merge main into xcode26 by @dalexsoto in #23065
- [xcode26] Update baseline to Xcode 26 Beta 2 by @dalexsoto in #23184
- Bump mlaunch to 1.1.71 by @rolfbjarne in #23283
- Bump mlaunch to get a version that works with Xcode 26. by @rolfbjarne in #23499
- Bump mlaunch to get fix for #23833. by @rolfbjarne in #23840
- Bump mlaunch. by @rolfbjarne in #23823
- Bump to Xcode 26 beta 3. by @rolfbjarne in #23285
- Bump to Xcode 26 beta 4. by @rolfbjarne in #23384
- Bump to Xcode 26 beta 5. by @rolfbjarne in #23504
- Return the plist value instead of the type by @MarLoe in #23721
- Set a default for the Http3Support feature switch by @rolfbjarne in #23223
- Typo in preview-apis.md by @jfversluis in #23587
- Update Messaging to 18.0.280-ga047b642b9 by @mauroa in #23654
- Update Xamarin.Messaging and renamed Xamarin paths by @mauroa in #22803
- Updated external/Xamarin.MacDev by @mauroa in #23136
- Use 'EnableDiagnostics' instead of 'EnableProfiler'. by @rolfbjarne in #22982
New Contributors
Full Changelog: dotnet-9.0.1xx-xcode16.5-9219...dotnet-9.0.1xx-xcode26.0-9752