forked from kattrali/Xcode-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTemplateInfo.plist
115 lines (115 loc) · 3.22 KB
/
TemplateInfo.plist
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?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>Kind</key>
<string>Xcode.Xcode3.ProjectTemplateUnitKind</string>
<key>Identifier</key>
<string>me.delisa.Xcode5PluginBase</string>
<key>Concrete</key>
<true/>
<key>Description</key>
<string>This template builds an Xcode5-compatible plugin.</string>
<key>Kind</key>
<string>Xcode.Xcode3.ProjectTemplateUnitKind</string>
<key>Platforms</key>
<array>
<string>com.apple.platform.macosx</string>
</array>
<key>Ancestors</key>
<array>
<string>com.apple.dt.unit.bundleBase</string>
<string>com.apple.dt.unit.macBase</string>
</array>
<key>Targets</key>
<array>
<dict>
<key>ProductType</key>
<string>com.apple.product-type.bundle</string>
<key>Frameworks</key>
<array>
<string>AppKit</string>
<string>Foundation</string>
</array>
<key>SharedSettings</key>
<dict>
<key>INSTALL_PATH</key>
<string>/Library/Application Support/Developer/Shared/Xcode/Plug-ins</string>
<key>WRAPPER_EXTENSION</key>
<string>xcplugin</string>
<key>COMBINE_HIDPI_IMAGES</key>
<string>YES</string>
<key>DEPLOYMENT_LOCATION</key>
<string>YES</string>
<key>DSTROOT</key>
<string>$(HOME)</string>
</dict>
<key>BuildPhases</key>
<array>
<dict>
<key>Class</key>
<string>Sources</string>
</dict>
<dict>
<key>Class</key>
<string>Frameworks</string>
</dict>
<dict>
<key>Class</key>
<string>Resources</string>
</dict>
</array>
</dict>
</array>
<key>Nodes</key>
<array>
<string>___PACKAGENAME___.h</string>
<string>___PACKAGENAME___.m</string>
<string>___PACKAGENAME___-Prefix.pch:objC:importFoundation</string>
<string>___PACKAGENAME___-Info.plist:bundle</string>
</array>
<key>Definitions</key>
<dict>
<key>___PACKAGENAME___.h</key>
<dict>
<key>Path</key>
<string>___PACKAGENAME___.h</string>
</dict>
<key>___PACKAGENAME___.m</key>
<dict>
<key>Path</key>
<string>___PACKAGENAME___.m</string>
</dict>
<key>___PACKAGENAME___-Info.plist:bundle</key>
<string><key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>XCGCReady</key>
<true/>
<key>XCPluginHasUI</key>
<false/>
<key>XC4Compatible</key>
<true/>
<key>DVTPlugInCompatibilityUUIDs</key>
<array>
<string>37B30044-3B14-46BA-ABAA-F01000C27B63</string>
</array>
</string>
</dict>
</dict>
</plist>