diff options
author | Jeff Ames | 2008-03-17 20:55:21 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-17 20:55:21 +0000 |
commit | 79209c429705beb57ad9b787718856ab2c9fd37c (patch) | |
tree | 6f459e172985bce8ffbfc09a5b9a4594dd881a62 /Prebuild/src/data/prebuild-1.7.xsd | |
parent | * More almost completely unproductive log message fiddling (diff) | |
download | opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.zip opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.gz opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.bz2 opensim-SC_OLD-79209c429705beb57ad9b787718856ab2c9fd37c.tar.xz |
Merged changes in Prebuild trunk up to r258 into OpenSim's Prebuild.
Hopefully this should make merging upstream easier.
Building with NAnt should still work, but Visual Studio is untested.
Diffstat (limited to 'Prebuild/src/data/prebuild-1.7.xsd')
-rw-r--r-- | Prebuild/src/data/prebuild-1.7.xsd | 480 |
1 files changed, 246 insertions, 234 deletions
diff --git a/Prebuild/src/data/prebuild-1.7.xsd b/Prebuild/src/data/prebuild-1.7.xsd index 381b9f0..3c108f3 100644 --- a/Prebuild/src/data/prebuild-1.7.xsd +++ b/Prebuild/src/data/prebuild-1.7.xsd | |||
@@ -1,14 +1,17 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" | 2 | <xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd"> |
3 | xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd"> | 3 | <xs:annotation> |
4 | <xs:annotation> | 4 | <xs:documentation> |
5 | <xs:documentation> | 5 | Copyright (c) 2004-2007 |
6 | Copyright (c) 2004-2005 Matthew Holmes (calefaction at houston . rr . com), Dan Moorehead (dan05a at gmail . com), David Hudson (jendave at yahoo dot com) | 6 | Matthew Holmes (calefaction at houston . rr . com), |
7 | Dan Moorehead (dan05a at gmail . com), | ||
8 | David Hudson (jendave at yahoo dot com), | ||
9 | C.J. Adams-Collier (cjac at colliertech dot com) | ||
7 | 10 | ||
8 | .NET Prebuild is a cross-platform XML-driven pre-build tool which | 11 | .NET Prebuild is a cross-platform XML-driven pre-build tool which |
9 | allows developers to easily generate project or make files for major | 12 | allows developers to easily generate project or make files for major |
10 | IDE's and .NET development tools including: Visual Studio .NET 2002 and | 13 | IDE's and .NET development tools including: Visual Studio .NET 2002, |
11 | 2003, SharpDevelop, MonoDevelop, and NAnt. | 14 | 2003, and 2005, SharpDevelop, MonoDevelop, NAnt, Xcode and the GNU Autotools. |
12 | 15 | ||
13 | BSD License: | 16 | BSD License: |
14 | 17 | ||
@@ -31,231 +34,240 @@ | |||
31 | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | 34 | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
32 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 35 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
33 | </xs:documentation> | 36 | </xs:documentation> |
34 | </xs:annotation> | 37 | </xs:annotation> |
35 | <xs:element name="Prebuild"> | 38 | <xs:element name="Prebuild"> |
36 | <xs:complexType> | 39 | <xs:complexType> |
37 | <xs:sequence> | 40 | <xs:sequence> |
38 | <xs:element ref="Process" minOccurs="0" maxOccurs="unbounded" /> | 41 | <xs:element ref="Process" minOccurs="0" maxOccurs="unbounded" /> |
39 | <xs:element ref="Solution" minOccurs="0" maxOccurs="unbounded" /> | 42 | <xs:element ref="Solution" minOccurs="0" maxOccurs="unbounded" /> |
40 | </xs:sequence> | 43 | </xs:sequence> |
41 | <xs:attribute name="version" /> | 44 | <xs:attribute name="version" /> |
42 | <xs:attribute name="checkOsVars" /> | 45 | <xs:attribute name="checkOsVars" /> |
43 | </xs:complexType> | ||
44 | </xs:element> | ||
45 | <xs:element name="Process" type="xs:string" /> | ||
46 | <xs:element name="Solution"> | ||
47 | <xs:complexType> | ||
48 | <xs:sequence> | ||
49 | <xs:element ref="Options" minOccurs="0" /> | ||
50 | <xs:element ref="Configuration" minOccurs="1" maxOccurs="unbounded" /> | ||
51 | <xs:element ref="Files" minOccurs="0" /> | ||
52 | <xs:element ref="Project" minOccurs="1" maxOccurs="unbounded" /> | ||
53 | </xs:sequence> | ||
54 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
55 | <xs:attribute name="activeConfig" type="xs:string" default="Debug" /> | ||
56 | <xs:attribute name="path" type="xs:string" default="" /> | ||
57 | <xs:attribute name="version" type="xs:string" default="1.0.0" /> | ||
58 | </xs:complexType> | ||
59 | </xs:element> | ||
60 | <xs:element name="Project"> | ||
61 | <xs:complexType> | ||
62 | <xs:sequence> | ||
63 | <xs:element ref="Configuration" minOccurs="0" maxOccurs="unbounded" /> | ||
64 | <xs:element name="ReferencePath" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> | ||
65 | <xs:element name="Reference" minOccurs="0" maxOccurs="unbounded"> | ||
66 | <xs:complexType> | ||
67 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
68 | <xs:attribute name="path" type="xs:string" /> | ||
69 | <xs:attribute name="localCopy" type="xs:boolean" /> | ||
70 | <xs:attribute name="version" type="xs:string" default="1.0.0"/> | ||
71 | </xs:complexType> | ||
72 | </xs:element> | ||
73 | <xs:element ref="Files" /> | ||
74 | </xs:sequence> | ||
75 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
76 | <xs:attribute name="designerFolder" type="xs:string" default="" /> | ||
77 | <xs:attribute name="filterGroups" type="xs:string" default="" /> | ||
78 | <xs:attribute name="path" type="xs:string" default="" /> | ||
79 | <xs:attribute name="icon" type="xs:string" default="" /> | ||
80 | <xs:attribute name="language" default="C#"> | ||
81 | <xs:simpleType> | ||
82 | <xs:restriction base="xs:string"> | ||
83 | <xs:enumeration value="C#" /> | ||
84 | <xs:enumeration value="VB.NET" /> | ||
85 | </xs:restriction> | ||
86 | </xs:simpleType> | ||
87 | </xs:attribute> | ||
88 | <xs:attribute name="type" default="Exe"> | ||
89 | <xs:simpleType> | ||
90 | <xs:restriction base="xs:string"> | ||
91 | <xs:enumeration value="Exe" /> | ||
92 | <xs:enumeration value="WinExe" /> | ||
93 | <xs:enumeration value="Library" /> | ||
94 | </xs:restriction> | ||
95 | </xs:simpleType> | ||
96 | </xs:attribute> | ||
97 | <xs:attribute name="runtime" default="Microsoft"> | ||
98 | <xs:simpleType> | ||
99 | <xs:restriction base="xs:string"> | ||
100 | <xs:enumeration value="Microsoft" /> | ||
101 | <xs:enumeration value="Mono" /> | ||
102 | </xs:restriction> | ||
103 | </xs:simpleType> | ||
104 | </xs:attribute> | ||
105 | <xs:attribute name="startupObject" type="xs:string" default="" /> | ||
106 | <xs:attribute name="rootNamespace" type="xs:string" /> | ||
107 | <xs:attribute name="assemblyName" type="xs:string" /> | ||
108 | <xs:attribute name="generateAssemblyInfoFile" type="xs:boolean" default="false"/> | ||
109 | </xs:complexType> | 46 | </xs:complexType> |
110 | </xs:element> | 47 | </xs:element> |
111 | <xs:element name="Configuration"> | 48 | <xs:element name="Process" type="xs:string" /> |
112 | <xs:complexType> | 49 | <xs:element name="Solution"> |
113 | <xs:sequence> | 50 | <xs:complexType> |
114 | <xs:element ref="Options" minOccurs="0" /> | 51 | <xs:sequence> |
115 | </xs:sequence> | 52 | <xs:element ref="Options" minOccurs="0" /> |
116 | <xs:attribute name="name" type="xs:string" use="required" /> | 53 | <xs:element ref="Configuration" minOccurs="1" maxOccurs="unbounded" /> |
117 | </xs:complexType> | 54 | <xs:element ref="Files" minOccurs="0" /> |
118 | </xs:element> | 55 | <xs:element ref="Project" minOccurs="1" maxOccurs="unbounded" /> |
119 | <xs:element name="Options"> | 56 | </xs:sequence> |
120 | <xs:complexType> | 57 | <xs:attribute name="name" type="xs:string" use="required" /> |
121 | <xs:all> | 58 | <xs:attribute name="activeConfig" type="xs:string" default="Debug" /> |
122 | <xs:element name="CompilerDefines" type="xs:string" minOccurs="0" /> | 59 | <xs:attribute name="path" type="xs:string" default="" /> |
123 | <xs:element name="OptimizeCode" type="xs:boolean" minOccurs="0" /> | 60 | <xs:attribute name="version" type="xs:string" default="1.0.0" /> |
124 | <xs:element name="CheckUnderflowOverflow" type="xs:boolean" minOccurs="0" /> | 61 | </xs:complexType> |
125 | <xs:element name="AllowUnsafe" type="xs:boolean" minOccurs="0" /> | 62 | </xs:element> |
126 | <xs:element name="PreBuildEvent" type="xs:string" minOccurs="0" /> | 63 | <xs:element name="Project"> |
127 | <xs:element name="PostBuildEvent" type="xs:string" minOccurs="0" /> | 64 | <xs:complexType> |
128 | <xs:element name="RunPostBuildEvent" minOccurs="0" default="OnBuildSuccess"> | 65 | <xs:sequence> |
129 | <xs:simpleType> | 66 | <xs:element name="Author" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> |
130 | <xs:restriction base="xs:string"> | 67 | <xs:element name="Description" type="xs:string" minOccurs="0" maxOccurs="1" /> |
131 | <xs:enumeration value="OnBuildSuccess" /> | 68 | <xs:element ref="Configuration" minOccurs="0" maxOccurs="unbounded" /> |
132 | <xs:enumeration value="Always" /> | 69 | <xs:element name="ReferencePath" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> |
133 | <xs:enumeration value="OnOutputUpdated" /> | 70 | <xs:element name="Reference" minOccurs="0" maxOccurs="unbounded"> |
134 | </xs:restriction> | 71 | <xs:complexType> |
135 | </xs:simpleType> | 72 | <xs:attribute name="name" type="xs:string" use="required" /> |
136 | </xs:element> | 73 | <xs:attribute name="path" type="xs:string" /> |
137 | <xs:element name="RunScript" type="xs:string" minOccurs="0" /> | 74 | <xs:attribute name="localCopy" type="xs:boolean" /> |
138 | <xs:element name="PreBuildEventArgs" type="xs:string" minOccurs="0" /> | 75 | <xs:attribute name="version" type="xs:string" /> |
139 | <xs:element name="PostBuildEventArgs" type="xs:string" minOccurs="0" /> | 76 | </xs:complexType> |
140 | <xs:element name="WarningLevel" minOccurs="0"> | 77 | </xs:element> |
141 | <xs:simpleType> | 78 | <xs:element ref="Files" /> |
142 | <xs:restriction base="xs:integer"> | 79 | </xs:sequence> |
143 | <xs:minInclusive value="0" /> | 80 | <xs:attribute name="name" type="xs:string" use="required" /> |
144 | <xs:maxInclusive value="4" /> | 81 | <xs:attribute name="designerFolder" type="xs:string" default="" /> |
145 | </xs:restriction> | 82 | <xs:attribute name="filterGroups" type="xs:string" default="" /> |
146 | </xs:simpleType> | 83 | <xs:attribute name="path" type="xs:string" default="" /> |
147 | </xs:element> | 84 | <xs:attribute name="icon" type="xs:string" default="" /> |
148 | <xs:element name="WarningsAsErrors" type="xs:boolean" minOccurs="0" /> | 85 | <xs:attribute name="configFile" type="xs:string" default="" /> |
149 | <xs:element name="SuppressWarnings" type="xs:string" minOccurs="0" /> | 86 | <xs:attribute name="version" type="xs:string" default="1.0.0" /> |
150 | <xs:element name="OutputPath" type="xs:string" minOccurs="0" /> | 87 | <xs:attribute name="language" default="C#"> |
151 | <xs:element name="GenerateDocumentation" type="xs:boolean" minOccurs="0" /> | 88 | <xs:simpleType> |
152 | <xs:element name="XmlDocFile" type="xs:string" minOccurs="0" /> | 89 | <xs:restriction base="xs:string"> |
153 | <xs:element name="DebugInformation" type="xs:boolean" minOccurs="0" /> | 90 | <xs:enumeration value="C#" /> |
154 | <xs:element name="RegisterComInterop" type="xs:boolean" minOccurs="0" /> | 91 | <xs:enumeration value="VB.NET" /> |
155 | <xs:element name="RemoveIntegerChecks" type="xs:boolean" minOccurs="0" /> | 92 | </xs:restriction> |
156 | <xs:element name="IncrementalBuild" type="xs:boolean" minOccurs="0" /> | 93 | </xs:simpleType> |
157 | <xs:element name="BaseAddress" type="xs:string" minOccurs="0" /> | 94 | </xs:attribute> |
158 | <xs:element name="FileAlignment" type="xs:integer" minOccurs="0" /> | 95 | <xs:attribute name="type" default="Exe"> |
159 | <xs:element name="NoStdLib" type="xs:boolean" minOccurs="0" /> | 96 | <xs:simpleType> |
160 | <xs:element name="KeyFile" type="xs:string" minOccurs="0" /> | 97 | <xs:restriction base="xs:string"> |
161 | </xs:all> | 98 | <xs:enumeration value="Exe" /> |
162 | </xs:complexType> | 99 | <xs:enumeration value="WinExe" /> |
163 | </xs:element> | 100 | <xs:enumeration value="Library" /> |
164 | <xs:element name="Files"> | 101 | </xs:restriction> |
165 | <xs:complexType> | 102 | </xs:simpleType> |
166 | <xs:sequence> | 103 | </xs:attribute> |
167 | <xs:element ref="File" minOccurs="0" maxOccurs="unbounded" /> | 104 | <xs:attribute name="runtime" default="Microsoft"> |
168 | <xs:element ref="Match" minOccurs="0" maxOccurs="unbounded" /> | 105 | <xs:simpleType> |
169 | </xs:sequence> | 106 | <xs:restriction base="xs:string"> |
170 | </xs:complexType> | 107 | <xs:enumeration value="Microsoft" /> |
171 | </xs:element> | 108 | <xs:enumeration value="Mono" /> |
172 | <xs:element name="File"> | 109 | </xs:restriction> |
173 | <xs:complexType> | 110 | </xs:simpleType> |
174 | <xs:simpleContent> | 111 | </xs:attribute> |
175 | <xs:extension base="xs:string"> | 112 | <xs:attribute name="startupObject" type="xs:string" default="" /> |
176 | <xs:attribute name="resourceName" type="xs:string" default="" /> | 113 | <xs:attribute name="rootNamespace" type="xs:string" /> |
177 | <xs:attribute name="buildAction" default="Compile"> | 114 | <xs:attribute name="assemblyName" type="xs:string" /> |
178 | <xs:simpleType> | 115 | <xs:attribute name="generateAssemblyInfoFile" type="xs:boolean" default="false" /> |
179 | <xs:restriction base="xs:string"> | 116 | </xs:complexType> |
180 | <xs:enumeration value="None" /> | 117 | </xs:element> |
181 | <xs:enumeration value="Compile" /> | 118 | <xs:element name="Configuration"> |
182 | <xs:enumeration value="Content" /> | 119 | <xs:complexType> |
183 | <xs:enumeration value="EmbeddedResource" /> | 120 | <xs:sequence> |
184 | </xs:restriction> | 121 | <xs:element ref="Options" minOccurs="0" /> |
185 | </xs:simpleType> | 122 | </xs:sequence> |
186 | </xs:attribute> | 123 | <xs:attribute name="name" type="xs:string" use="required" /> |
187 | <xs:attribute name="subType" default="Code"> | 124 | </xs:complexType> |
188 | <xs:simpleType> | 125 | </xs:element> |
189 | <xs:restriction base="xs:string"> | 126 | <xs:element name="Options"> |
190 | <xs:enumeration value="Code" /> | 127 | <xs:complexType> |
191 | <xs:enumeration value="Component" /> | 128 | <xs:all> |
192 | <xs:enumeration value="Form" /> | 129 | <xs:element name="CompilerDefines" type="xs:string" minOccurs="0" /> |
193 | <xs:enumeration value="Settings" /> | 130 | <xs:element name="OptimizeCode" type="xs:boolean" minOccurs="0" /> |
194 | <xs:enumeration value="UserControl" /> | 131 | <xs:element name="CheckUnderflowOverflow" type="xs:boolean" minOccurs="0" /> |
195 | </xs:restriction> | 132 | <xs:element name="AllowUnsafe" type="xs:boolean" minOccurs="0" /> |
196 | </xs:simpleType> | 133 | <xs:element name="PreBuildEvent" type="xs:string" minOccurs="0" /> |
197 | </xs:attribute> | 134 | <xs:element name="PostBuildEvent" type="xs:string" minOccurs="0" /> |
198 | <xs:attribute name="link" type="xs:boolean" /> | 135 | <xs:element name="RunPostBuildEvent" minOccurs="0" default="OnBuildSuccess"> |
199 | <xs:attribute name="copyToOutput" default="Never"> | 136 | <xs:simpleType> |
200 | <xs:simpleType> | 137 | <xs:restriction base="xs:string"> |
201 | <xs:restriction base="xs:string"> | 138 | <xs:enumeration value="OnBuildSuccess" /> |
202 | <xs:enumeration value="Never" /> | 139 | <xs:enumeration value="Always" /> |
203 | <xs:enumeration value="Always" /> | 140 | <xs:enumeration value="OnOutputUpdated" /> |
204 | <xs:enumeration value="PreserveNewest" /> | 141 | </xs:restriction> |
205 | </xs:restriction> | 142 | </xs:simpleType> |
206 | </xs:simpleType> | 143 | </xs:element> |
207 | </xs:attribute> | 144 | <xs:element name="RunScript" type="xs:string" minOccurs="0" /> |
208 | </xs:extension> | 145 | <xs:element name="PreBuildEventArgs" type="xs:string" minOccurs="0" /> |
209 | </xs:simpleContent> | 146 | <xs:element name="PostBuildEventArgs" type="xs:string" minOccurs="0" /> |
210 | </xs:complexType> | 147 | <xs:element name="WarningLevel" minOccurs="0"> |
211 | </xs:element> | 148 | <xs:simpleType> |
212 | <xs:element name="Match"> | 149 | <xs:restriction base="xs:integer"> |
213 | <xs:complexType> | 150 | <xs:minInclusive value="0" /> |
214 | <xs:sequence> | 151 | <xs:maxInclusive value="4" /> |
215 | <xs:element ref="Exclude" minOccurs="0" maxOccurs="unbounded" /> | 152 | </xs:restriction> |
216 | </xs:sequence> | 153 | </xs:simpleType> |
217 | <xs:attribute name="path" type="xs:string" /> | 154 | </xs:element> |
218 | <xs:attribute name="pattern" type="xs:string" use="required" /> | 155 | <xs:element name="WarningsAsErrors" type="xs:boolean" minOccurs="0" /> |
219 | <xs:attribute name="recurse" type="xs:boolean" default="false" /> | 156 | <xs:element name="SuppressWarnings" type="xs:string" minOccurs="0" /> |
220 | <xs:attribute name="useRegex" type="xs:boolean" default="false" /> | 157 | <xs:element name="OutputPath" type="xs:string" minOccurs="0" /> |
221 | <xs:attribute name="buildAction" default="Compile"> | 158 | <xs:element name="GenerateDocumentation" type="xs:boolean" minOccurs="0" /> |
222 | <xs:simpleType> | 159 | <xs:element name="XmlDocFile" type="xs:string" minOccurs="0" /> |
223 | <xs:restriction base="xs:string"> | 160 | <xs:element name="DebugInformation" type="xs:boolean" minOccurs="0" /> |
224 | <xs:enumeration value="None" /> | 161 | <xs:element name="RegisterComInterop" type="xs:boolean" minOccurs="0" /> |
225 | <xs:enumeration value="Compile" /> | 162 | <xs:element name="RemoveIntegerChecks" type="xs:boolean" minOccurs="0" /> |
226 | <xs:enumeration value="Content" /> | 163 | <xs:element name="IncrementalBuild" type="xs:boolean" minOccurs="0" /> |
227 | <xs:enumeration value="EmbeddedResource" /> | 164 | <xs:element name="BaseAddress" type="xs:string" minOccurs="0" /> |
228 | </xs:restriction> | 165 | <xs:element name="FileAlignment" type="xs:integer" minOccurs="0" /> |
229 | </xs:simpleType> | 166 | <xs:element name="NoStdLib" type="xs:boolean" minOccurs="0" /> |
230 | </xs:attribute> | 167 | <xs:element name="KeyFile" type="xs:string" minOccurs="0" /> |
231 | <xs:attribute name="resourceName" type="xs:string" default="" /> | 168 | </xs:all> |
232 | <xs:attribute name="subType" default="Code"> | 169 | </xs:complexType> |
233 | <xs:simpleType> | 170 | </xs:element> |
234 | <xs:restriction base="xs:string"> | 171 | <xs:element name="Files"> |
235 | <xs:enumeration value="Code" /> | 172 | <xs:complexType> |
236 | <xs:enumeration value="Component" /> | 173 | <xs:sequence> |
237 | <xs:enumeration value="Designer" /> | 174 | <xs:element ref="File" minOccurs="0" maxOccurs="unbounded" /> |
238 | <xs:enumeration value="Form" /> | 175 | <xs:element ref="Match" minOccurs="0" maxOccurs="unbounded" /> |
239 | <xs:enumeration value="Settings" /> | 176 | </xs:sequence> |
240 | <xs:enumeration value="UserControl" /> | 177 | </xs:complexType> |
241 | </xs:restriction> | 178 | </xs:element> |
242 | </xs:simpleType> | 179 | <xs:element name="File"> |
243 | </xs:attribute> | 180 | <xs:complexType> |
244 | <xs:attribute name="link" type="xs:boolean" /> | 181 | <xs:simpleContent> |
245 | <xs:attribute name="copyToOutput" default="Never"> | 182 | <xs:extension base="xs:string"> |
246 | <xs:simpleType> | 183 | <xs:attribute name="resourceName" type="xs:string" default="" /> |
247 | <xs:restriction base="xs:string"> | 184 | <xs:attribute name="buildAction" default="Compile"> |
248 | <xs:enumeration value="Never" /> | 185 | <xs:simpleType> |
249 | <xs:enumeration value="Always" /> | 186 | <xs:restriction base="xs:string"> |
250 | <xs:enumeration value="PreserveNewest" /> | 187 | <xs:enumeration value="None" /> |
251 | </xs:restriction> | 188 | <xs:enumeration value="Compile" /> |
252 | </xs:simpleType> | 189 | <xs:enumeration value="Content" /> |
253 | </xs:attribute> | 190 | <xs:enumeration value="EmbeddedResource" /> |
254 | </xs:complexType> | 191 | </xs:restriction> |
255 | </xs:element> | 192 | </xs:simpleType> |
256 | <xs:element name="Exclude"> | 193 | </xs:attribute> |
257 | <xs:complexType> | 194 | <xs:attribute name="subType" default="Code"> |
258 | <xs:attribute name="name" type="xs:string" use="required" /> | 195 | <xs:simpleType> |
259 | </xs:complexType> | 196 | <xs:restriction base="xs:string"> |
260 | </xs:element> | 197 | <xs:enumeration value="Code" /> |
198 | <xs:enumeration value="Component" /> | ||
199 | <xs:enumeration value="Form" /> | ||
200 | <xs:enumeration value="Settings" /> | ||
201 | <xs:enumeration value="UserControl" /> | ||
202 | </xs:restriction> | ||
203 | </xs:simpleType> | ||
204 | </xs:attribute> | ||
205 | <xs:attribute name="link" type="xs:boolean" /> | ||
206 | <xs:attribute name="copyToOutput" default="Never"> | ||
207 | <xs:simpleType> | ||
208 | <xs:restriction base="xs:string"> | ||
209 | <xs:enumeration value="Never" /> | ||
210 | <xs:enumeration value="Always" /> | ||
211 | <xs:enumeration value="PreserveNewest" /> | ||
212 | </xs:restriction> | ||
213 | </xs:simpleType> | ||
214 | </xs:attribute> | ||
215 | <xs:attribute name="preservePath" type="xs:boolean" /> | ||
216 | <xs:attribute name="linkPath" type="xs:string" /> | ||
217 | </xs:extension> | ||
218 | </xs:simpleContent> | ||
219 | </xs:complexType> | ||
220 | </xs:element> | ||
221 | <xs:element name="Match"> | ||
222 | <xs:complexType> | ||
223 | <xs:sequence> | ||
224 | <xs:element ref="Exclude" minOccurs="0" maxOccurs="unbounded" /> | ||
225 | </xs:sequence> | ||
226 | <xs:attribute name="path" type="xs:string" /> | ||
227 | <xs:attribute name="pattern" type="xs:string" use="required" /> | ||
228 | <xs:attribute name="recurse" type="xs:boolean" default="false" /> | ||
229 | <xs:attribute name="useRegex" type="xs:boolean" default="false" /> | ||
230 | <xs:attribute name="buildAction" default="Compile"> | ||
231 | <xs:simpleType> | ||
232 | <xs:restriction base="xs:string"> | ||
233 | <xs:enumeration value="None" /> | ||
234 | <xs:enumeration value="Compile" /> | ||
235 | <xs:enumeration value="Content" /> | ||
236 | <xs:enumeration value="EmbeddedResource" /> | ||
237 | </xs:restriction> | ||
238 | </xs:simpleType> | ||
239 | </xs:attribute> | ||
240 | <xs:attribute name="resourceName" type="xs:string" default="" /> | ||
241 | <xs:attribute name="subType" default="Code"> | ||
242 | <xs:simpleType> | ||
243 | <xs:restriction base="xs:string"> | ||
244 | <xs:enumeration value="Code" /> | ||
245 | <xs:enumeration value="Component" /> | ||
246 | <xs:enumeration value="Designer" /> | ||
247 | <xs:enumeration value="Form" /> | ||
248 | <xs:enumeration value="Settings" /> | ||
249 | <xs:enumeration value="UserControl" /> | ||
250 | </xs:restriction> | ||
251 | </xs:simpleType> | ||
252 | </xs:attribute> | ||
253 | <xs:attribute name="link" type="xs:boolean" /> | ||
254 | <xs:attribute name="copyToOutput" default="Never"> | ||
255 | <xs:simpleType> | ||
256 | <xs:restriction base="xs:string"> | ||
257 | <xs:enumeration value="Never" /> | ||
258 | <xs:enumeration value="Always" /> | ||
259 | <xs:enumeration value="PreserveNewest" /> | ||
260 | </xs:restriction> | ||
261 | </xs:simpleType> | ||
262 | </xs:attribute> | ||
263 | <xs:attribute name="preservePath" type="xs:boolean" /> | ||
264 | <xs:attribute name="linkPath" type="xs:string" /> | ||
265 | </xs:complexType> | ||
266 | </xs:element> | ||
267 | <xs:element name="Exclude"> | ||
268 | <xs:complexType> | ||
269 | <xs:attribute name="name" type="xs:string" /> | ||
270 | <xs:attribute name="pattern" type="xs:string" /> | ||
271 | </xs:complexType> | ||
272 | </xs:element> | ||
261 | </xs:schema> | 273 | </xs:schema> |