Skip to content

Commit

Permalink
[AutomaticAssessmentConfiguration] Implement Xcode beta 5-6 changes. (#…
Browse files Browse the repository at this point in the history
…21028)

There were no changes in beta 4 or beta 6.
  • Loading branch information
rolfbjarne authored Aug 26, 2024
1 parent 90acc66 commit beac080
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 25 deletions.
19 changes: 10 additions & 9 deletions src/automaticassessmentconfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public enum AEAssessmentErrorCode : long {
}

[iOS (14, 0)]
[MacCatalyst (14, 0)]
[MacCatalyst (18, 0)]
[Mac (15, 0)]
[Native]
enum AEAutocorrectMode : long {
None = 0,
Expand All @@ -43,23 +44,23 @@ enum AEAutocorrectMode : long {
[BaseType (typeof (NSObject))]
interface AEAssessmentConfiguration : NSCopying {

[NoMac, iOS (14, 0)]
[MacCatalyst (14, 0)]
[Mac (15, 0), iOS (14, 0)]
[MacCatalyst (18, 0)]
[Export ("autocorrectMode")]
AEAutocorrectMode AutocorrectMode { get; set; }

[NoMac, iOS (14, 0)]
[MacCatalyst (14, 0)]
[Mac (15, 0), iOS (14, 0)]
[MacCatalyst (18, 0)]
[Export ("allowsSpellCheck")]
bool AllowsSpellCheck { get; set; }

[NoMac, iOS (14, 0)]
[MacCatalyst (14, 0)]
[Mac (15, 0), iOS (14, 0)]
[MacCatalyst (18, 0)]
[Export ("allowsPredictiveKeyboard")]
bool AllowsPredictiveKeyboard { get; set; }

[NoMac, iOS (14, 0)]
[MacCatalyst (14, 0)]
[Mac (15, 0), iOS (14, 0)]
[MacCatalyst (18, 0)]
[Export ("allowsKeyboardShortcuts")]
bool AllowsKeyboardShortcuts { get; set; }

Expand Down

This file was deleted.

This file was deleted.

8 comments on commit beac080

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

@vs-mobiletools-engineering-service2

This comment was marked as outdated.

Please sign in to comment.