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
2 changes: 2 additions & 0 deletions src/build/dotnet/generator-frameworks.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ partial class Frameworks {
"DeviceDiscoveryUI",
"EventKit",
"EventKitUI",
"ExtensionKit",
"ExternalAccessory",
"FileProvider",
"FileProviderUI",
Expand Down Expand Up @@ -442,6 +443,7 @@ partial class Frameworks {
"EventKit",
"EventKitUI",
"ExecutionPolicy",
"ExtensionKit",
"ExternalAccessory",
"FileProvider",
"Foundation",
Expand Down
7 changes: 4 additions & 3 deletions src/extensionkit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#endif

namespace ExtensionKit {
[Mac (13, 0), NoiOS, NoMacCatalyst, NoTV]
[Mac (13, 0), iOS (26, 0), MacCatalyst (26, 0), NoTV]
[BaseType (typeof (UIViewController))]
interface EXAppExtensionBrowserViewController {
[DesignatedInitializer]
Expand All @@ -26,7 +26,7 @@ interface EXAppExtensionBrowserViewController {

interface IEXHostViewControllerDelegate { }

[Mac (13, 0), NoiOS, NoMacCatalyst, NoTV]
[Mac (13, 0), iOS (26, 0), MacCatalyst (26, 0), NoTV]
[Protocol, Model]
[BaseType (typeof (NSObject))]
interface EXHostViewControllerDelegate {
Expand All @@ -37,14 +37,15 @@ interface EXHostViewControllerDelegate {
void WillDeactivate (EXHostViewController viewController, [NullAllowed] NSError error);

#if !XAMCORE_5_0
[NoiOS, NoMacCatalyst, NoTV]
[Obsoleted (PlatformName.MacOSX, 14, 0, message: "No longer required.")]
[Export ("shouldAcceptXPCConnection:")]
bool ShouldAcceptXpcConnection (NSXpcConnection connection);
#endif
}

// @interface EXHostViewController : NSViewController
[Mac (13, 0), NoiOS, NoMacCatalyst, NoTV]
[Mac (13, 0), iOS (26, 0), MacCatalyst (26, 0), NoTV]
[BaseType (typeof (UIViewController))]
interface EXHostViewController {
[DesignatedInitializer]
Expand Down
2 changes: 2 additions & 0 deletions src/frameworks.sources
Original file line number Diff line number Diff line change
Expand Up @@ -2125,6 +2125,7 @@ IOS_FRAMEWORKS = \
DeviceDiscoveryUI \
EventKit \
EventKitUI \
ExtensionKit \
ExternalAccessory \
FileProvider \
FileProviderUI \
Expand Down Expand Up @@ -2306,6 +2307,7 @@ MACCATALYST_FRAMEWORKS = \
EventKit \
EventKitUI \
ExecutionPolicy \
ExtensionKit \
ExternalAccessory \
FileProvider \
GameController \
Expand Down
1 change: 1 addition & 0 deletions src/rsp/dotnet/ios-defines-dotnet.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
-d:HAS_DEVICEDISCOVERYUI
-d:HAS_EVENTKIT
-d:HAS_EVENTKITUI
-d:HAS_EXTENSIONKIT
-d:HAS_EXTERNALACCESSORY
-d:HAS_FILEPROVIDER
-d:HAS_FILEPROVIDERUI
Expand Down
1 change: 1 addition & 0 deletions src/rsp/dotnet/maccatalyst-defines-dotnet.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
-d:HAS_EVENTKIT
-d:HAS_EVENTKITUI
-d:HAS_EXECUTIONPOLICY
-d:HAS_EXTENSIONKIT
-d:HAS_EXTERNALACCESSORY
-d:HAS_FILEPROVIDER
-d:HAS_FOUNDATION
Expand Down
2 changes: 2 additions & 0 deletions tests/dotnet/UnitTests/ProjectTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2988,6 +2988,7 @@ public void AppendRuntimeIdentifierToOutputPath_DisableDirectoryBuildProps (Appl
"/System/Library/Frameworks/DeviceDiscoveryUI.framework/DeviceDiscoveryUI",
"/System/Library/Frameworks/EventKit.framework/EventKit",
"/System/Library/Frameworks/EventKitUI.framework/EventKitUI",
"/System/Library/Frameworks/ExtensionKit.framework/ExtensionKit",
"/System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory",
"/System/Library/Frameworks/FileProvider.framework/FileProvider",
"/System/Library/Frameworks/FileProviderUI.framework/FileProviderUI",
Expand Down Expand Up @@ -3454,6 +3455,7 @@ public void AppendRuntimeIdentifierToOutputPath_DisableDirectoryBuildProps (Appl
"/System/iOSSupport/System/Library/Frameworks/CoreLocationUI.framework/Versions/A/CoreLocationUI",
"/System/iOSSupport/System/Library/Frameworks/CoreNFC.framework/Versions/A/CoreNFC",
"/System/iOSSupport/System/Library/Frameworks/EventKitUI.framework/Versions/A/EventKitUI",
"/System/iOSSupport/System/Library/Frameworks/ExtensionKit.framework/Versions/A/ExtensionKit",
"/System/iOSSupport/System/Library/Frameworks/GameController.framework/Versions/A/GameController",
"/System/iOSSupport/System/Library/Frameworks/GameKit.framework/Versions/A/GameKit",
"/System/iOSSupport/System/Library/Frameworks/GameSave.framework/Versions/A/GameSave",
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# Removed in XAMCORE_5_0
!extra-protocol-member! unexpected selector EXHostViewControllerDelegate::shouldAcceptXPCConnection: found
2 changes: 2 additions & 0 deletions tools/common/Frameworks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,9 @@ public static Frameworks CreateiOSFrameworks (bool is_simulator_build)
{ "SecurityUI", "SecurityUI", 18, 4 },

{ "DeviceDiscoveryUI", "DeviceDiscoveryUI", 26, 0 },
{ "ExtensionKit", "ExtensionKit", 26, 0 },
{ "GameSave", "GameSave", 26, 0 },

// the above MUST be kept in sync with simlauncher
// see tools/mtouch/Makefile
// please also keep it sorted to ease comparison
Expand Down
Loading