-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAddOnInfo.plist.in
29 lines (29 loc) · 1.01 KB
/
AddOnInfo.plist.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!-- https://developer.apple.com/documentation/bundleresources/information-property-list -->
<plist version="1.0">
<dict>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>.APX</string>
<key>CFBundleIdentifier</key>
<string>@bundleIdentifier@</string>
<key>CFBundleDisplayName</key>
<string>@addOnName@</string>
<key>CFBundleVersion</key>
<string>@longVersion@</string>
<key>CFBundleShortVersionString</key>
<string>@shortVersion@</string>
<key>NSHumanReadableCopyright</key>
<string>@copyright@</string>
<key>LSMinimumSystemVersion</key>
<string>@lsMinimumSystemVersion@</string>
<key>CFBundleDevelopmentRegion</key>
<string>en-US</string>
<key>CFBundleIconFile</key>
<string>ArchiCADPlugin</string>
<key>CFBundleExecutable</key>
<string>@addOnName@</string>@privateBuild@
</dict>
</plist>