Skip to content

Commit

Permalink
[Xcode14] Add missing availability on dotnet. fixes xamarin#2607
Browse files Browse the repository at this point in the history
Add missint attrs to fix xamarin/maccore#2607
  • Loading branch information
mandel-macaque committed Jul 26, 2022
1 parent af04116 commit 9042723
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 8 additions & 1 deletion src/CoreText/CTFont.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,15 @@ public enum CTFontTable : uint {
public enum CTFontTableOptions : uint {
None = 0,
#if NET
[SupportedOSPlatform ("ios")]
[SupportedOSPlatform ("macos")]
[SupportedOSPlatform ("tvos")]
[SupportedOSPlatform ("maccatalyst")]
[UnsupportedOSPlatform ("ios9.0")]
[UnsupportedOSPlatform ("tvos16.0")]
#if TVOS
#if IOS
[Obsolete ("Starting with ios16.0.", DiagnosticId = "BI1234", UrlFormat = "https://github.com/xamarin/xamarin-macios/wiki/Obsolete")]
#elif TVOS
[Obsolete ("Starting with tvos16.0.", DiagnosticId = "BI1234", UrlFormat = "https://github.com/xamarin/xamarin-macios/wiki/Obsolete")]
#endif
#else
Expand Down

This file was deleted.

0 comments on commit 9042723

Please sign in to comment.