File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,12 @@ public class PBXFileReference : PBXReference {
133
133
public lazy var fullPath : Path = self . allObjects. fullFilePaths [ self . id] !
134
134
}
135
135
136
+ public class PBXReferenceProxy : PBXReference {
137
+
138
+ // convenience accessor
139
+ public lazy var remoteRef : PBXContainerItemProxy = self . object ( " remoteRef " )
140
+ }
141
+
136
142
public class PBXGroup : PBXReference {
137
143
public lazy var children : [ PBXReference ] = self . objects ( " children " )
138
144
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ let types: [String: PBXObject.Type] = [
153
153
" PBXTargetDependency " : PBXTargetDependency . self,
154
154
" XCConfigurationList " : XCConfigurationList . self,
155
155
" PBXReference " : PBXReference . self,
156
+ " PBXReferenceProxy " : PBXReferenceProxy . self,
156
157
" PBXFileReference " : PBXFileReference . self,
157
158
" PBXGroup " : PBXGroup . self,
158
159
" PBXVariantGroup " : PBXVariantGroup . self,
You can’t perform that action at this time.
0 commit comments