xcodeproj is a library written in Swift for parsing and working with Xcode projects. It's heavily inspired in CocoaPods XcodeProj and xcode.
This project is a fork and evolution from xcproj
- Git clone the repository
[email protected]:tuist/xcodeproj.git
. - Generate xcodeproj with
swift package generate-xcodeproj
. - Open
xcodeproj.xcodeproj
.
Add the dependency in your Package.swift
file:
let package = Package(
name: "myproject",
dependencies: [
.package(url: "https://github.com/tuist/xcodeproj.git", .upToNextMajor(from: "5.0.0")),
],
targets: [
.target(
name: "myproject",
dependencies: ["xcodeproj"]),
]
)
xcodeproj
5 is a major release with important changes in the API focused on making it more convenient, and simplify the references handling. This version hasn't been officially released yet but you can already start updating your project for the new version. These are the changes you'd need to make in your projects:
xcproj
has been renamed toxcodeproj
so you need to update all your import statements to use the new name.- There's no support for Carthage nor CocoaPods anymore, if you were using them for fetching
xcodeproj
, you can use the Swift Package Manager and manually setup the dependency. - We've replaced
Path
withAbsolutePath
andRelativePath
from the Swift Package Manager'sBasic
framework. You might need to change some of the usages to use the new type. - Reference attributes have been renamed to use the naming convention
attributeReference
whereattribute
is the name of the attribute. If you are interested in materializing the reference to get the object, objects provide convenient getters that you can use for that purpose. Those getters throw if the object is not found in the project.
There are some useful additions to the API that you can check out on the CHANGELOG.
One of those additions is an improvement on how references are managed. When new objects are added to the project, you get the object reference. The reference is an instance that should be used to refer that object from any other. The value of that reference is an implementation detail that has been abstracted away from you.
You can check out the documentation on the following link. The documentation is automatically generated in every release by using Jazzy from Realm.