Skip to content

Commit

Permalink
Add Xcode 13.0 project file format as a supported version.
Browse files Browse the repository at this point in the history
- Resolves #82
  • Loading branch information
dempseyatgithub committed Oct 21, 2021
1 parent ec53488 commit 076aa90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BuildSettingExtractor/BuildSettingExtractor.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
static NSSet *_compatibilityVersionStringSet;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_compatibilityVersionStringSet = [NSSet setWithObjects:@"Xcode 3.2", @"Xcode 6.3", @"Xcode 8.0", @"Xcode 9.3", @"Xcode 10.0", @"Xcode 11.0", @"Xcode 11.4", @"Xcode 12.0", nil];
_compatibilityVersionStringSet = [NSSet setWithObjects:@"Xcode 3.2", @"Xcode 6.3", @"Xcode 8.0", @"Xcode 9.3", @"Xcode 10.0", @"Xcode 11.0", @"Xcode 11.4", @"Xcode 12.0", @"Xcode 13.0", nil];
});
return _compatibilityVersionStringSet;
}
Expand Down

0 comments on commit 076aa90

Please sign in to comment.