1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 3<plist version="1.0"> 4<dict> 5 <key>CFBundleExecutable</key> 6 <string>${CLANGD_XPC_SERVICE_NAME}</string> 7 <key>CFBundleIdentifier</key> 8 <string>${CLANGD_XPC_SERVICE_BUNDLE_NAME}</string> 9 <key>CFBundleInfoDictionaryVersion</key> 10 <string>6.0</string> 11 <key>CFBundleName</key> 12 <string>${CLANGD_XPC_SERVICE_NAME}</string> 13 <key>CFBundlePackageType</key> 14 <string>XPC!</string> 15 <key>CFBundleVersion</key> 16 <string></string> 17 <key>CFBundleShortVersionString</key> 18 <string>1.0</string> 19 <key>XPCService</key> 20 <dict> 21 <key>ServiceType</key> 22 <string>Application</string> 23 <key>EnvironmentVariables</key> 24 <dict> 25 <key>CLANGD_AS_XPC_SERVICE</key> 26 <string>1</string> 27 </dict> 28 </dict> 29</dict> 30</plist> 31