kmhjs / Xcode.swift

Swift library for reading and writing Xcode project files in OpenStep format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Xcode.swift


Reading and writing the the Xcode pbxproj file format, from Swift!

The main goal of this project is to generate project.pbxproj files in the legacy OpenStep format used by Xcode. Using this, a project file can be modified without changing it to XML format and causing a huge git diff.

Currently, this project is mostly used to support R.swift.

Usage

This reads a xcodeproj file (possibly in XML format), and writes it back out in OpenStep format:

let xcodeproj = NSURL(fileURLWithPath: "Test.xcodeproj")

let proj = try! XCProjectFile(xcodeprojURL: xcodeproj)

try! proj.writeToXcodeproj(xcodeprojURL: xcodeproj, format: NSPropertyListFormat.OpenStepFormat)

Releases

  • 0.3.0 - 2016-04-27 - Fixes to SourceTreeFolder
  • 0.2.1 - 2015-12-30 - Add missing PBXProxyReference class
  • 0.2.0 - 2015-10-29 - Adds serialization support
  • 0.1.0 - 2015-09-28 - Initial public release

Licence & Credits

Xcode.swift is written by Tom Lokhorst and available under the MIT license, so feel free to use it in commercial and non-commercial projects.

About

Swift library for reading and writing Xcode project files in OpenStep format

License:MIT License


Languages

Language:Swift 98.1%Language:Objective-C 1.9%