mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The code goes into its own sub-tree under 'tools' but tests go under 'test', so that running 'check-swift' will also run all the SourceKit tests. SourceKit is disabled on non-darwin platforms.
26 lines
795 B
XML
26 lines
795 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleExecutable</key>
|
|
<string>${XPCSERVICE_NAME}</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>${XPCSERVICE_IDENTIFIER}</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>${XPCSERVICE_NAME}</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>XPC!</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>${XPCSERVICE_BUNDLE_VERSION}</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${XPCSERVICE_SHORT_VERSION_STRING}</string>
|
|
<key>XPCService</key>
|
|
<dict>
|
|
<key>ServiceType</key>
|
|
<string>Application</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|