Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 5fa472e

Browse files
authored
Merge pull request #3 from unsignedapps/fix/ignore-xcodeproj-extra-files
Don't include top-level "extra files" in the Xcode project.
2 parents d707008 + 69a7579 commit 5fa472e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/CreateXCFramework/Command.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct Command: ParsableCommand {
2727
2828
Supported platforms: \(TargetPlatform.allCases.map({ $0.rawValue }).joined(separator: ", "))
2929
""",
30-
version: "1.0.1"
30+
version: "1.0.4"
3131
)
3232

3333

Sources/CreateXCFramework/ProjectGenerator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ struct ProjectGenerator {
4040
projectName: self.package.package.name,
4141
xcodeprojPath: path,
4242
graph: self.package.graph,
43-
options: XcodeprojOptions(),
43+
options: XcodeprojOptions(addExtraFiles: false),
4444
diagnostics: self.package.diagnostics
4545
)
4646
}

0 commit comments

Comments
 (0)