We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13a1a3 commit 2709405Copy full SHA for 2709405
README.md
@@ -8,6 +8,20 @@ The main goal of this project is to generate `project.pbxproj` files in the lega
8
Currently, this project is mostly used to support [R.swift](https://github.com/mac-cain13/R.swift).
9
10
11
+Usage
12
+-----
13
+
14
+This reads a xcodeproj file (possibly in XML format), and writes it back out in OpenStep format:
15
16
+```swift
17
+let xcodeproj = NSURL(fileURLWithPath: "Test.xcodeproj")
18
19
+let proj = try! XCProjectFile(xcodeprojURL: xcodeproj)
20
21
+try! proj.writeToXcodeproj(xcodeprojURL: xcodeproj, format: NSPropertyListFormat.OpenStepFormat)
22
+```
23
24
25
Releases
26
--------
27
0 commit comments