Skip to content

Commit 8a169f1

Browse files
Add Xcode 12.0 project file format as a supported version.
- Resolves #65
1 parent 57a8a2f commit 8a169f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BuildSettingExtractor/BuildSettingExtractor.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
static NSSet *_compatibilityVersionStringSet;
1616
static dispatch_once_t onceToken;
1717
dispatch_once(&onceToken, ^{
18-
_compatibilityVersionStringSet = [NSSet setWithObjects:@"Xcode 3.2", @"Xcode 6.3", @"Xcode 8.0", @"Xcode 9.3", @"Xcode 10.0", @"Xcode 11.0", nil];
18+
_compatibilityVersionStringSet = [NSSet setWithObjects:@"Xcode 3.2", @"Xcode 6.3", @"Xcode 8.0", @"Xcode 9.3", @"Xcode 10.0", @"Xcode 11.0", @"Xcode 12.0", nil];
1919
});
2020
return _compatibilityVersionStringSet;
2121
}

0 commit comments

Comments
 (0)