Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -60,6 +60,7 @@ partial class Frameworks {
"DeviceDiscoveryExtension",
"EventKit",
"EventKitUI",
"ExtensionKit",
"ExternalAccessory",
"FileProvider",
"FileProviderUI",
Expand Down Expand Up @@ -438,6 +439,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 @@ -2121,6 +2121,7 @@ IOS_FRAMEWORKS = \
DeviceDiscoveryExtension \
EventKit \
EventKitUI \
ExtensionKit \
ExternalAccessory \
FileProvider \
FileProviderUI \
Expand Down Expand Up @@ -2300,6 +2301,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 @@ -55,6 +55,7 @@
-d:HAS_DEVICEDISCOVERYEXTENSION
-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

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
1 change: 1 addition & 0 deletions tools/common/Frameworks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ public static Frameworks CreateiOSFrameworks (bool is_simulator_build)

{ "SecurityUI", "SecurityUI", 18, 4 },

{ "ExtensionKit", "ExtensionKit", 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