Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fileprovider] Update for Xcode 12 beta 6 #9581

Merged
merged 3 commits into from
Sep 4, 2020
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
26 changes: 26 additions & 0 deletions src/FileProvider/Compat.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#if !XAMCORE_4_0

using System;
using ObjCRuntime;

namespace FileProvider {

#if !MONOMAC
[iOS (13,0)]
[Obsoleted (PlatformName.iOS, 14,0)]
public interface INSFileProviderItemDecorating : INSFileProviderItem {
}
#endif

[iOS (13,0)][Obsoleted (PlatformName.iOS, 14,0)]
[Mac (10,15)][Obsoleted (PlatformName.MacOSX, 11,0)]
public interface INSFileProviderItemFlags : INativeObject, IDisposable {
bool Hidden { get; }
bool PathExtensionHidden { get; }
bool UserExecutable { get; }
bool UserReadable { get; }
bool UserWritable { get; }
}
}

#endif
Loading