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

Commit

Permalink
Merge pull request #3 from unsignedapps/fix/ignore-xcodeproj-extra-files
Browse files Browse the repository at this point in the history
Don't include top-level "extra files" in the Xcode project.
  • Loading branch information
bok- authored Jun 17, 2020
2 parents d707008 + 69a7579 commit 5fa472e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/CreateXCFramework/Command.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct Command: ParsableCommand {
Supported platforms: \(TargetPlatform.allCases.map({ $0.rawValue }).joined(separator: ", "))
""",
version: "1.0.1"
version: "1.0.4"
)


Expand Down
2 changes: 1 addition & 1 deletion Sources/CreateXCFramework/ProjectGenerator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ struct ProjectGenerator {
projectName: self.package.package.name,
xcodeprojPath: path,
graph: self.package.graph,
options: XcodeprojOptions(),
options: XcodeprojOptions(addExtraFiles: false),
diagnostics: self.package.diagnostics
)
}
Expand Down

0 comments on commit 5fa472e

Please sign in to comment.