mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Merge branch 'master' into min/no_codegen
This commit is contained in:
@@ -87,7 +87,7 @@ public class PBXProjGenerator {
|
||||
PBXProject(
|
||||
name: project.name,
|
||||
buildConfigurationList: buildConfigList,
|
||||
compatibilityVersion: project.compatabilityVersion,
|
||||
compatibilityVersion: project.compatibilityVersion,
|
||||
mainGroup: mainGroup,
|
||||
developmentRegion: project.options.developmentLanguage ?? "en"
|
||||
)
|
||||
|
||||
@@ -133,7 +133,8 @@ public class SchemeGenerator {
|
||||
skipped: false,
|
||||
parallelizable: testTarget.parallelizable,
|
||||
randomExecutionOrdering: testTarget.randomExecutionOrder,
|
||||
buildableReference: testBuilEntries.buildableReference
|
||||
buildableReference: testBuilEntries.buildableReference,
|
||||
skippedTests: testTarget.skippedTests.map(XCScheme.SkippedTest.init)
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -224,7 +224,8 @@ class SourceGenerator {
|
||||
"gpx",
|
||||
"lproj",
|
||||
"xcfilelist",
|
||||
"apns":
|
||||
"apns",
|
||||
"pch":
|
||||
return nil
|
||||
default:
|
||||
return .resources
|
||||
|
||||
@@ -11,8 +11,8 @@ extension Project {
|
||||
return "1.3"
|
||||
}
|
||||
|
||||
var compatabilityVersion: String {
|
||||
return "Xcode 9.3"
|
||||
var compatibilityVersion: String {
|
||||
return "Xcode 10.0"
|
||||
}
|
||||
|
||||
var objectVersion: UInt {
|
||||
|
||||
Reference in New Issue
Block a user