-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTemplateInfo.plist
More file actions
85 lines (85 loc) · 2.03 KB
/
TemplateInfo.plist
File metadata and controls
85 lines (85 loc) · 2.03 KB
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
<?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.IDEFoundation.TextSubstitutionFileTemplateKind</string>
<key>Description</key>
<string>An empty Swift file, class, struct, protocol or extension.</string>
<key>Summary</key>
<string>A Swift file</string>
<key>SortOrder</key>
<string>9</string>
<key>AllowedTypes</key>
<array>
<string>public.swift-source</string>
</array>
<key>DefaultCompletionName</key>
<string>File</string>
<key>SupportsSwiftPackage</key>
<true/>
<key>Options</key>
<array>
<dict>
<key>Identifier</key>
<string>productName</string>
<key>Required</key>
<true/>
<key>Name</key>
<string>File:</string>
<key>Description</key>
<string>The name of the file to create</string>
<key>Type</key>
<string>text</string>
<key>NotPersisted</key>
<true/>
</dict>
<dict>
<key>Identifier</key>
<string>fileType</string>
<key>Required</key>
<true/>
<key>Name</key>
<string>File Type:</string>
<key>Description</key>
<string>What kind of Objective-C source to create</string>
<key>Type</key>
<string>popup</string>
<key>Default</key>
<string>Empty File</string>
<key>Values</key>
<array>
<string>Protocol</string>
<string>Class</string>
<string>Sub Class</string>
<string>Struct</string>
<string>Extension</string>
<string>Enum</string>
<string>Empty File</string>
</array>
</dict>
<dict>
<key>Identifier</key>
<string>extendedClass</string>
<key>Name</key>
<string>Class:</string>
<key>Description</key>
<string>Extended class.</string>
<key>Default</key>
<string>NSObject</string>
<key>RequiredOptions</key>
<dict>
<key>fileType</key>
<array>
<string>Sub Class</string>
<string>Extension</string>
</array>
</dict>
<key>Required</key>
<true/>
<key>Type</key>
<string>class</string>
</dict>
</array>
</dict>
</plist>