mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
Merge pull request #435 from alvarhansen/xpc-type
Changes XPC Service package type to XPC!
This commit is contained in:
@@ -2,6 +2,9 @@
|
||||
|
||||
## Master
|
||||
|
||||
#### Fixed
|
||||
- Fixed XPC Service package type [#435](https://github.com/yonaskolb/XcodeGen/pull/435) @alvarhansen
|
||||
|
||||
## 2.0.0
|
||||
|
||||
#### Added
|
||||
|
||||
@@ -33,8 +33,9 @@ public class InfoPlistGenerator {
|
||||
targetInfoPlist["CFBundlePackageType"] = "FMWK"
|
||||
case .bundle:
|
||||
targetInfoPlist["CFBundlePackageType"] = "BNDL"
|
||||
case .xpcService:
|
||||
targetInfoPlist["CFBundlePackageType"] = "XPC"
|
||||
case .xpcService,
|
||||
.appExtension:
|
||||
targetInfoPlist["CFBundlePackageType"] = "XPC!"
|
||||
default: break
|
||||
}
|
||||
return targetInfoPlist
|
||||
|
||||
Reference in New Issue
Block a user