Skip to content

Commit

Permalink
Add fields to PBXFileSystemSynchronizedBuildFileExceptionSet
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlokhorst committed Sep 19, 2024
1 parent cbfc30f commit a3b33b7
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Sources/XcodeEdit/PBXObject.swift
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,15 @@ public class PBXFileSystemSynchronizedRootGroup : PBXReference {
}

public class PBXFileSystemSynchronizedBuildFileExceptionSet : PBXObject {
public let membershipExceptions: [String]?
public let target: Reference<PBXTarget>

public required init(id: Guid, fields: Fields, allObjects: AllObjects) throws {
self.membershipExceptions = try fields.optionalStrings("membershipExceptions")
self.target = allObjects.createReference(id: try fields.id("target"))

try super.init(id: id, fields: fields, allObjects: allObjects)
}
}

public class XCVersionGroup : PBXReference {
Expand Down

0 comments on commit a3b33b7

Please sign in to comment.