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

[AuthenticationServices] Implement Xcode 16.0 beta 1-6 changes. #21143

Merged
merged 9 commits into from
Sep 6, 2024
431 changes: 425 additions & 6 deletions src/authenticationservices.cs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/bgen/Caches/TypeCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public class TypeCache {
public Type SCNVector4 { get; }
public Type SecAccessControl { get; }
public Type SecIdentity { get; }
public Type SecKey { get; }
public Type SecTrust { get; }
public Type SecProtocolMetadata { get; }
public Type SecProtocolOptions { get; }
Expand Down Expand Up @@ -229,6 +230,7 @@ public TypeCache (MetadataLoadContext universe, Frameworks frameworks, PlatformN
SCNMatrix4 = Lookup (platformAssembly, "SceneKit", "SCNMatrix4");
SecAccessControl = Lookup (platformAssembly, "Security", "SecAccessControl");
SecIdentity = Lookup (platformAssembly, "Security", "SecIdentity");
SecKey = Lookup (platformAssembly, "Security", "SecKey");
SecTrust = Lookup (platformAssembly, "Security", "SecTrust");
SecProtocolOptions = Lookup (platformAssembly, "Security", "SecProtocolOptions");
SecProtocolMetadata = Lookup (platformAssembly, "Security", "SecProtocolMetadata");
Expand Down
1 change: 1 addition & 0 deletions src/bgen/Models/MarshalTypeList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public void Load (TypeCache typeCache, Frameworks frameworks)
Add (typeCache.AudioUnit);
Add (typeCache.SecIdentity);
Add (typeCache.SecIdentity2);
Add (typeCache.SecKey);
Add (typeCache.SecTrust);
Add (typeCache.SecTrust2);
Add (typeCache.SecProtocolOptions);
Expand Down
142 changes: 141 additions & 1 deletion tests/cecil-tests/Documentation.KnownFailures.txt

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

Loading
Loading