diff options
author | lbsa71 | 2007-11-05 15:33:03 +0000 |
---|---|---|
committer | lbsa71 | 2007-11-05 15:33:03 +0000 |
commit | 44f3e4fc505172fff47d1492fc032c3189374108 (patch) | |
tree | a200388d224055e705f5ff5ea7fdcfd38e5df045 | |
parent | * prebuild now creates .exe references in NAntTarget (diff) | |
download | opensim-SC_OLD-44f3e4fc505172fff47d1492fc032c3189374108.zip opensim-SC_OLD-44f3e4fc505172fff47d1492fc032c3189374108.tar.gz opensim-SC_OLD-44f3e4fc505172fff47d1492fc032c3189374108.tar.bz2 opensim-SC_OLD-44f3e4fc505172fff47d1492fc032c3189374108.tar.xz |
* Reverted local xsd copy
-rw-r--r-- | Prebuild/prebuild-opensim.xsd | 258 | ||||
-rw-r--r-- | prebuild.xml | 2 |
2 files changed, 1 insertions, 259 deletions
diff --git a/Prebuild/prebuild-opensim.xsd b/Prebuild/prebuild-opensim.xsd deleted file mode 100644 index eee36aa..0000000 --- a/Prebuild/prebuild-opensim.xsd +++ /dev/null | |||
@@ -1,258 +0,0 @@ | |||
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" | ||
3 | xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd"> | ||
4 | <xs:annotation> | ||
5 | <xs:documentation> | ||
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) | ||
7 | |||
8 | .NET Prebuild is a cross-platform XML-driven pre-build tool which | ||
9 | allows developers to easily generate project or make files for major | ||
10 | IDE's and .NET development tools including: Visual Studio .NET 2002 and | ||
11 | 2003, SharpDevelop, MonoDevelop, and NAnt. | ||
12 | |||
13 | BSD License: | ||
14 | |||
15 | Redistribution and use in source and binary forms, with or without modification, are permitted | ||
16 | provided that the following conditions are met: | ||
17 | |||
18 | * Redistributions of source code must retain the above copyright notice, this list of conditions | ||
19 | and the following disclaimer. | ||
20 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions | ||
21 | and the following disclaimer in the documentation and/or other materials provided with the | ||
22 | distribution. | ||
23 | * The name of the author may not be used to endorse or promote products derived from this software | ||
24 | without specific prior written permission. | ||
25 | |||
26 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, | ||
27 | BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
28 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
29 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
30 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | ||
31 | 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. | ||
33 | </xs:documentation> | ||
34 | </xs:annotation> | ||
35 | <xs:element name="Prebuild"> | ||
36 | <xs:complexType> | ||
37 | <xs:sequence> | ||
38 | <xs:element ref="Process" minOccurs="0" maxOccurs="unbounded" /> | ||
39 | <xs:element ref="Solution" minOccurs="0" maxOccurs="unbounded" /> | ||
40 | </xs:sequence> | ||
41 | <xs:attribute name="version" /> | ||
42 | <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:complexType> | ||
58 | </xs:element> | ||
59 | <xs:element name="Project"> | ||
60 | <xs:complexType> | ||
61 | <xs:sequence> | ||
62 | <xs:element ref="Configuration" minOccurs="0" maxOccurs="unbounded" /> | ||
63 | <xs:element name="ReferencePath" type="xs:string" minOccurs="0" maxOccurs="unbounded" /> | ||
64 | <xs:element name="Reference" minOccurs="0" maxOccurs="unbounded"> | ||
65 | <xs:complexType> | ||
66 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
67 | <xs:attribute name="path" type="xs:string" /> | ||
68 | <xs:attribute name="localCopy" type="xs:boolean" /> | ||
69 | <xs:attribute name="version" type="xs:string" /> | ||
70 | </xs:complexType> | ||
71 | </xs:element> | ||
72 | <xs:element ref="Files" /> | ||
73 | </xs:sequence> | ||
74 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
75 | <xs:attribute name="designerFolder" type="xs:string" default="" /> | ||
76 | <xs:attribute name="filterGroups" type="xs:string" default="" /> | ||
77 | <xs:attribute name="path" type="xs:string" default="" /> | ||
78 | <xs:attribute name="icon" type="xs:string" default="" /> | ||
79 | <xs:attribute name="language" default="C#"> | ||
80 | <xs:simpleType> | ||
81 | <xs:restriction base="xs:string"> | ||
82 | <xs:enumeration value="C#" /> | ||
83 | <xs:enumeration value="VB.NET" /> | ||
84 | </xs:restriction> | ||
85 | </xs:simpleType> | ||
86 | </xs:attribute> | ||
87 | <xs:attribute name="type" default="Exe"> | ||
88 | <xs:simpleType> | ||
89 | <xs:restriction base="xs:string"> | ||
90 | <xs:enumeration value="Exe" /> | ||
91 | <xs:enumeration value="WinExe" /> | ||
92 | <xs:enumeration value="Library" /> | ||
93 | </xs:restriction> | ||
94 | </xs:simpleType> | ||
95 | </xs:attribute> | ||
96 | <xs:attribute name="runtime" default="Microsoft"> | ||
97 | <xs:simpleType> | ||
98 | <xs:restriction base="xs:string"> | ||
99 | <xs:enumeration value="Microsoft" /> | ||
100 | <xs:enumeration value="Mono" /> | ||
101 | </xs:restriction> | ||
102 | </xs:simpleType> | ||
103 | </xs:attribute> | ||
104 | <xs:attribute name="startupObject" type="xs:string" default="" /> | ||
105 | <xs:attribute name="rootNamespace" type="xs:string" /> | ||
106 | <xs:attribute name="assemblyName" type="xs:string" /> | ||
107 | </xs:complexType> | ||
108 | </xs:element> | ||
109 | <xs:element name="Configuration"> | ||
110 | <xs:complexType> | ||
111 | <xs:sequence> | ||
112 | <xs:element ref="Options" minOccurs="0" /> | ||
113 | </xs:sequence> | ||
114 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
115 | </xs:complexType> | ||
116 | </xs:element> | ||
117 | <xs:element name="Options"> | ||
118 | <xs:complexType> | ||
119 | <xs:all> | ||
120 | <xs:element name="CompilerDefines" type="xs:string" minOccurs="0" /> | ||
121 | <xs:element name="OptimizeCode" type="xs:boolean" minOccurs="0" /> | ||
122 | <xs:element name="CheckUnderflowOverflow" type="xs:boolean" minOccurs="0" /> | ||
123 | <xs:element name="AllowUnsafe" type="xs:boolean" minOccurs="0" /> | ||
124 | <xs:element name="PreBuildEvent" type="xs:string" minOccurs="0" /> | ||
125 | <xs:element name="PostBuildEvent" type="xs:string" minOccurs="0" /> | ||
126 | <xs:element name="RunPostBuildEvent" minOccurs="0" default="OnBuildSuccess"> | ||
127 | <xs:simpleType> | ||
128 | <xs:restriction base="xs:string"> | ||
129 | <xs:enumeration value="OnBuildSuccess" /> | ||
130 | <xs:enumeration value="Always" /> | ||
131 | <xs:enumeration value="OnOutputUpdated" /> | ||
132 | </xs:restriction> | ||
133 | </xs:simpleType> | ||
134 | </xs:element> | ||
135 | <xs:element name="RunScript" type="xs:string" minOccurs="0" /> | ||
136 | <xs:element name="PreBuildEventArgs" type="xs:string" minOccurs="0" /> | ||
137 | <xs:element name="PostBuildEventArgs" type="xs:string" minOccurs="0" /> | ||
138 | <xs:element name="WarningLevel" minOccurs="0"> | ||
139 | <xs:simpleType> | ||
140 | <xs:restriction base="xs:integer"> | ||
141 | <xs:minInclusive value="0" /> | ||
142 | <xs:maxInclusive value="4" /> | ||
143 | </xs:restriction> | ||
144 | </xs:simpleType> | ||
145 | </xs:element> | ||
146 | <xs:element name="WarningsAsErrors" type="xs:boolean" minOccurs="0" /> | ||
147 | <xs:element name="SuppressWarnings" type="xs:string" minOccurs="0" /> | ||
148 | <xs:element name="OutputPath" type="xs:string" minOccurs="0" /> | ||
149 | <xs:element name="XmlDocFile" type="xs:string" minOccurs="0" /> | ||
150 | <xs:element name="DebugInformation" type="xs:boolean" minOccurs="0" /> | ||
151 | <xs:element name="RegisterComInterop" type="xs:boolean" minOccurs="0" /> | ||
152 | <xs:element name="RemoveIntegerChecks" type="xs:boolean" minOccurs="0" /> | ||
153 | <xs:element name="IncrementalBuild" type="xs:boolean" minOccurs="0" /> | ||
154 | <xs:element name="BaseAddress" type="xs:string" minOccurs="0" /> | ||
155 | <xs:element name="FileAlignment" type="xs:integer" minOccurs="0" /> | ||
156 | <xs:element name="NoStdLib" type="xs:boolean" minOccurs="0" /> | ||
157 | <xs:element name="KeyFile" type="xs:string" minOccurs="0" /> | ||
158 | </xs:all> | ||
159 | </xs:complexType> | ||
160 | </xs:element> | ||
161 | <xs:element name="Files"> | ||
162 | <xs:complexType> | ||
163 | <xs:sequence> | ||
164 | <xs:element ref="File" minOccurs="0" maxOccurs="unbounded" /> | ||
165 | <xs:element ref="Match" minOccurs="0" maxOccurs="unbounded" /> | ||
166 | </xs:sequence> | ||
167 | </xs:complexType> | ||
168 | </xs:element> | ||
169 | <xs:element name="File"> | ||
170 | <xs:complexType> | ||
171 | <xs:simpleContent> | ||
172 | <xs:extension base="xs:string"> | ||
173 | <xs:attribute name="resourceName" type="xs:string" default="" /> | ||
174 | <xs:attribute name="buildAction" default="Compile"> | ||
175 | <xs:simpleType> | ||
176 | <xs:restriction base="xs:string"> | ||
177 | <xs:enumeration value="None" /> | ||
178 | <xs:enumeration value="Compile" /> | ||
179 | <xs:enumeration value="Content" /> | ||
180 | <xs:enumeration value="EmbeddedResource" /> | ||
181 | </xs:restriction> | ||
182 | </xs:simpleType> | ||
183 | </xs:attribute> | ||
184 | <xs:attribute name="subType" default="Code"> | ||
185 | <xs:simpleType> | ||
186 | <xs:restriction base="xs:string"> | ||
187 | <xs:enumeration value="Code" /> | ||
188 | <xs:enumeration value="Component" /> | ||
189 | <xs:enumeration value="Form" /> | ||
190 | <xs:enumeration value="Settings" /> | ||
191 | <xs:enumeration value="UserControl" /> | ||
192 | </xs:restriction> | ||
193 | </xs:simpleType> | ||
194 | </xs:attribute> | ||
195 | <xs:attribute name="link" type="xs:boolean" /> | ||
196 | <xs:attribute name="copyToOutput" default="Never"> | ||
197 | <xs:simpleType> | ||
198 | <xs:restriction base="xs:string"> | ||
199 | <xs:enumeration value="Never" /> | ||
200 | <xs:enumeration value="Always" /> | ||
201 | <xs:enumeration value="PreserveNewest" /> | ||
202 | </xs:restriction> | ||
203 | </xs:simpleType> | ||
204 | </xs:attribute> | ||
205 | </xs:extension> | ||
206 | </xs:simpleContent> | ||
207 | </xs:complexType> | ||
208 | </xs:element> | ||
209 | <xs:element name="Match"> | ||
210 | <xs:complexType> | ||
211 | <xs:sequence> | ||
212 | <xs:element ref="Exclude" minOccurs="0" maxOccurs="unbounded" /> | ||
213 | </xs:sequence> | ||
214 | <xs:attribute name="path" type="xs:string" /> | ||
215 | <xs:attribute name="pattern" type="xs:string" use="required" /> | ||
216 | <xs:attribute name="recurse" type="xs:boolean" default="false" /> | ||
217 | <xs:attribute name="useRegex" type="xs:boolean" default="false" /> | ||
218 | <xs:attribute name="buildAction" default="Compile"> | ||
219 | <xs:simpleType> | ||
220 | <xs:restriction base="xs:string"> | ||
221 | <xs:enumeration value="None" /> | ||
222 | <xs:enumeration value="Compile" /> | ||
223 | <xs:enumeration value="Content" /> | ||
224 | <xs:enumeration value="EmbeddedResource" /> | ||
225 | </xs:restriction> | ||
226 | </xs:simpleType> | ||
227 | </xs:attribute> | ||
228 | <xs:attribute name="resourceName" type="xs:string" default="" /> | ||
229 | <xs:attribute name="subType" default="Code"> | ||
230 | <xs:simpleType> | ||
231 | <xs:restriction base="xs:string"> | ||
232 | <xs:enumeration value="Code" /> | ||
233 | <xs:enumeration value="Component" /> | ||
234 | <xs:enumeration value="Form" /> | ||
235 | <xs:enumeration value="Settings" /> | ||
236 | <xs:enumeration value="UserControl" /> | ||
237 | </xs:restriction> | ||
238 | </xs:simpleType> | ||
239 | </xs:attribute> | ||
240 | <xs:attribute name="link" type="xs:boolean" /> | ||
241 | <xs:attribute name="copyToOutput" default="Never"> | ||
242 | <xs:simpleType> | ||
243 | <xs:restriction base="xs:string"> | ||
244 | <xs:enumeration value="Never" /> | ||
245 | <xs:enumeration value="Always" /> | ||
246 | <xs:enumeration value="PreserveNewest" /> | ||
247 | </xs:restriction> | ||
248 | </xs:simpleType> | ||
249 | </xs:attribute> | ||
250 | </xs:complexType> | ||
251 | </xs:element> | ||
252 | <xs:element name="Exclude"> | ||
253 | <xs:complexType> | ||
254 | <xs:attribute name="name" type="xs:string" use="required" /> | ||
255 | </xs:complexType> | ||
256 | </xs:element> | ||
257 | |||
258 | </xs:schema> | ||
diff --git a/prebuild.xml b/prebuild.xml index a891405..e9cc318 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | 1 | <?xml version="1.0" encoding="utf-8" ?> |
2 | <Prebuild xmlns="./Prebuild/prebuild-opensim.xsd" version="1.7"> | 2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> |
3 | <Solution name="OpenSim" activeConfig="Debug" path="./" version="0.4.0-svn"> | 3 | <Solution name="OpenSim" activeConfig="Debug" path="./" version="0.4.0-svn"> |
4 | <Configuration name="Debug"> | 4 | <Configuration name="Debug"> |
5 | <Options> | 5 | <Options> |