-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FileProvider] Add support for Xcode13 beta 4. (#12300)
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
- Loading branch information
1 parent
d506a13
commit 0f15240
Showing
5 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#if MONOMAC | ||
using System; | ||
using System.Runtime.InteropServices; | ||
using ObjCRuntime; | ||
|
||
namespace FileProvider { | ||
|
||
[NoiOS, NoMacCatalyst, Mac (12,0)] | ||
[StructLayout (LayoutKind.Sequential)] | ||
public struct NSFileProviderTypeAndCreator | ||
{ | ||
public uint Type; | ||
public uint Creator; | ||
|
||
#if !COREBUILD | ||
public string GetTypeAsFourCC () | ||
=> Runtime.ToFourCCString (Type); | ||
|
||
public string GetCreatorAsFourCC() | ||
=> Runtime.ToFourCCString (Creator); | ||
#endif | ||
} | ||
|
||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
0f15240
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥 Tests failed catastrophically on Build (no summary found). 🔥
Result file $(TEST_SUMMARY_PATH) not found.
Pipeline on Agent
[FileProvider] Add support for Xcode13 beta 4. (#12300)