diff options
author | MW | 2007-04-11 09:45:48 +0000 |
---|---|---|
committer | MW | 2007-04-11 09:45:48 +0000 |
commit | ffd7a6b8c22cd21e355f77fea20b145424e3d912 (patch) | |
tree | 94deb515b2b7cb5233fc8fc8d9d531e1a789b7c7 /prebuild.xml | |
parent | (no commit message) (diff) | |
download | opensim-SC_OLD-ffd7a6b8c22cd21e355f77fea20b145424e3d912.zip opensim-SC_OLD-ffd7a6b8c22cd21e355f77fea20b145424e3d912.tar.gz opensim-SC_OLD-ffd7a6b8c22cd21e355f77fea20b145424e3d912.tar.bz2 opensim-SC_OLD-ffd7a6b8c22cd21e355f77fea20b145424e3d912.tar.xz |
Changed so that a bin\ScriptEngines\ directory will be searched for scripting Engines.
Added the work in progress JVM scripting engine.
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 1208 |
1 files changed, 616 insertions, 592 deletions
diff --git a/prebuild.xml b/prebuild.xml index 659a298..92e6af2 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1,592 +1,616 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | 1 | <?xml version="1.0" encoding="utf-8" ?> |
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.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="./"> | 3 | <Solution name="OpenSim" activeConfig="Debug" path="./"> |
4 | <Configuration name="Debug"> | 4 | <Configuration name="Debug"> |
5 | <Options> | 5 | <Options> |
6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | 6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> |
7 | <OptimizeCode>false</OptimizeCode> | 7 | <OptimizeCode>false</OptimizeCode> |
8 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | 8 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> |
9 | <AllowUnsafe>false</AllowUnsafe> | 9 | <AllowUnsafe>false</AllowUnsafe> |
10 | <WarningLevel>4</WarningLevel> | 10 | <WarningLevel>4</WarningLevel> |
11 | <WarningsAsErrors>false</WarningsAsErrors> | 11 | <WarningsAsErrors>false</WarningsAsErrors> |
12 | <SuppressWarnings></SuppressWarnings> | 12 | <SuppressWarnings></SuppressWarnings> |
13 | <OutputPath>bin</OutputPath> | 13 | <OutputPath>bin</OutputPath> |
14 | <DebugInformation>true</DebugInformation> | 14 | <DebugInformation>true</DebugInformation> |
15 | <IncrementalBuild>true</IncrementalBuild> | 15 | <IncrementalBuild>true</IncrementalBuild> |
16 | <NoStdLib>false</NoStdLib> | 16 | <NoStdLib>false</NoStdLib> |
17 | </Options> | 17 | </Options> |
18 | </Configuration> | 18 | </Configuration> |
19 | <Configuration name="Release"> | 19 | <Configuration name="Release"> |
20 | <Options> | 20 | <Options> |
21 | <CompilerDefines>TRACE</CompilerDefines> | 21 | <CompilerDefines>TRACE</CompilerDefines> |
22 | <OptimizeCode>true</OptimizeCode> | 22 | <OptimizeCode>true</OptimizeCode> |
23 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | 23 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> |
24 | <AllowUnsafe>false</AllowUnsafe> | 24 | <AllowUnsafe>false</AllowUnsafe> |
25 | <WarningLevel>4</WarningLevel> | 25 | <WarningLevel>4</WarningLevel> |
26 | <WarningsAsErrors>false</WarningsAsErrors> | 26 | <WarningsAsErrors>false</WarningsAsErrors> |
27 | <SuppressWarnings></SuppressWarnings> | 27 | <SuppressWarnings></SuppressWarnings> |
28 | <OutputPath>bin</OutputPath> | 28 | <OutputPath>bin</OutputPath> |
29 | <DebugInformation>false</DebugInformation> | 29 | <DebugInformation>false</DebugInformation> |
30 | <IncrementalBuild>true</IncrementalBuild> | 30 | <IncrementalBuild>true</IncrementalBuild> |
31 | <NoStdLib>false</NoStdLib> | 31 | <NoStdLib>false</NoStdLib> |
32 | </Options> | 32 | </Options> |
33 | </Configuration> | 33 | </Configuration> |
34 | 34 | ||
35 | <!-- Core OpenSim Projects --> | 35 | <!-- Core OpenSim Projects --> |
36 | 36 | ||
37 | <Project name="OpenSim.Framework" path="OpenSim.Framework" type="Library"> | 37 | <Project name="OpenSim.Framework" path="OpenSim.Framework" type="Library"> |
38 | <Configuration name="Debug"> | 38 | <Configuration name="Debug"> |
39 | <Options> | 39 | <Options> |
40 | <OutputPath>../bin/</OutputPath> | 40 | <OutputPath>../bin/</OutputPath> |
41 | </Options> | 41 | </Options> |
42 | </Configuration> | 42 | </Configuration> |
43 | <Configuration name="Release"> | 43 | <Configuration name="Release"> |
44 | <Options> | 44 | <Options> |
45 | <OutputPath>../bin/</OutputPath> | 45 | <OutputPath>../bin/</OutputPath> |
46 | </Options> | 46 | </Options> |
47 | </Configuration> | 47 | </Configuration> |
48 | 48 | ||
49 | <ReferencePath>../bin/</ReferencePath> | 49 | <ReferencePath>../bin/</ReferencePath> |
50 | <Reference name="System"/> | 50 | <Reference name="System"/> |
51 | <Reference name="System.Xml"/> | 51 | <Reference name="System.Xml"/> |
52 | <Reference name="libsecondlife.dll"/> | 52 | <Reference name="libsecondlife.dll"/> |
53 | <Reference name="Db4objects.Db4o.dll"/> | 53 | <Reference name="Db4objects.Db4o.dll"/> |
54 | <Files> | 54 | <Files> |
55 | <Match pattern="*.cs" recurse="true"/> | 55 | <Match pattern="*.cs" recurse="true"/> |
56 | </Files> | 56 | </Files> |
57 | </Project> | 57 | </Project> |
58 | 58 | ||
59 | <Project name="OpenSim.Framework.Console" path="OpenSim.Framework.Console" type="Library"> | 59 | <Project name="OpenSim.Framework.Console" path="OpenSim.Framework.Console" type="Library"> |
60 | <Configuration name="Debug"> | 60 | <Configuration name="Debug"> |
61 | <Options> | 61 | <Options> |
62 | <OutputPath>../bin/</OutputPath> | 62 | <OutputPath>../bin/</OutputPath> |
63 | </Options> | 63 | </Options> |
64 | </Configuration> | 64 | </Configuration> |
65 | <Configuration name="Release"> | 65 | <Configuration name="Release"> |
66 | <Options> | 66 | <Options> |
67 | <OutputPath>../bin/</OutputPath> | 67 | <OutputPath>../bin/</OutputPath> |
68 | </Options> | 68 | </Options> |
69 | </Configuration> | 69 | </Configuration> |
70 | 70 | ||
71 | <ReferencePath>../bin/</ReferencePath> | 71 | <ReferencePath>../bin/</ReferencePath> |
72 | <Reference name="System" localCopy="false"/> | 72 | <Reference name="System" localCopy="false"/> |
73 | <Files> | 73 | <Files> |
74 | <Match pattern="*.cs" recurse="true"/> | 74 | <Match pattern="*.cs" recurse="true"/> |
75 | </Files> | 75 | </Files> |
76 | </Project> | 76 | </Project> |
77 | 77 | ||
78 | <Project name="OpenSim.Servers" path="Servers" type="Library"> | 78 | <Project name="OpenSim.Servers" path="Servers" type="Library"> |
79 | <Configuration name="Debug"> | 79 | <Configuration name="Debug"> |
80 | <Options> | 80 | <Options> |
81 | <OutputPath>../bin/</OutputPath> | 81 | <OutputPath>../bin/</OutputPath> |
82 | </Options> | 82 | </Options> |
83 | </Configuration> | 83 | </Configuration> |
84 | <Configuration name="Release"> | 84 | <Configuration name="Release"> |
85 | <Options> | 85 | <Options> |
86 | <OutputPath>../bin/</OutputPath> | 86 | <OutputPath>../bin/</OutputPath> |
87 | </Options> | 87 | </Options> |
88 | </Configuration> | 88 | </Configuration> |
89 | 89 | ||
90 | <ReferencePath>../bin/</ReferencePath> | 90 | <ReferencePath>../bin/</ReferencePath> |
91 | <Reference name="System"/> | 91 | <Reference name="System"/> |
92 | <Reference name="System.Xml"/> | 92 | <Reference name="System.Xml"/> |
93 | <Reference name="OpenSim.Framework"/> | 93 | <Reference name="OpenSim.Framework"/> |
94 | <Reference name="OpenSim.Framework.Console"/> | 94 | <Reference name="OpenSim.Framework.Console"/> |
95 | <Reference name="libsecondlife.dll"/> | 95 | <Reference name="libsecondlife.dll"/> |
96 | 96 | ||
97 | <Files> | 97 | <Files> |
98 | <Match pattern="*.cs" recurse="true"/> | 98 | <Match pattern="*.cs" recurse="true"/> |
99 | </Files> | 99 | </Files> |
100 | </Project> | 100 | </Project> |
101 | 101 | ||
102 | <!-- OGS projects --> | 102 | <!-- OGS projects --> |
103 | 103 | ||
104 | <Project name="OpenGridServices.GridServer" path="OpenGridServices.GridServer" type="Exe"> | 104 | <Project name="OpenGridServices.GridServer" path="OpenGridServices.GridServer" type="Exe"> |
105 | <Configuration name="Debug"> | 105 | <Configuration name="Debug"> |
106 | <Options> | 106 | <Options> |
107 | <OutputPath>../bin/</OutputPath> | 107 | <OutputPath>../bin/</OutputPath> |
108 | </Options> | 108 | </Options> |
109 | </Configuration> | 109 | </Configuration> |
110 | <Configuration name="Release"> | 110 | <Configuration name="Release"> |
111 | <Options> | 111 | <Options> |
112 | <OutputPath>../bin/</OutputPath> | 112 | <OutputPath>../bin/</OutputPath> |
113 | </Options> | 113 | </Options> |
114 | </Configuration> | 114 | </Configuration> |
115 | 115 | ||
116 | <ReferencePath>../bin/</ReferencePath> | 116 | <ReferencePath>../bin/</ReferencePath> |
117 | <Reference name="System" localCopy="false"/> | 117 | <Reference name="System" localCopy="false"/> |
118 | <Reference name="System.Data" localCopy="false"/> | 118 | <Reference name="System.Data" localCopy="false"/> |
119 | <Reference name="System.Xml" localCopy="false"/> | 119 | <Reference name="System.Xml" localCopy="false"/> |
120 | <Reference name="OpenSim.Framework"/> | 120 | <Reference name="OpenSim.Framework"/> |
121 | <Reference name="OpenSim.Framework.Console"/> | 121 | <Reference name="OpenSim.Framework.Console"/> |
122 | <Reference name="libsecondlife.dll"/> | 122 | <Reference name="libsecondlife.dll"/> |
123 | <Reference name="Db4objects.Db4o.dll"/> | 123 | <Reference name="Db4objects.Db4o.dll"/> |
124 | 124 | ||
125 | <Files> | 125 | <Files> |
126 | <Match pattern="*.cs" recurse="true"/> | 126 | <Match pattern="*.cs" recurse="true"/> |
127 | </Files> | 127 | </Files> |
128 | </Project> | 128 | </Project> |
129 | 129 | ||
130 | <Project name="OpenGridServices.UserServer" path="OpenGridServices.UserServer" type="Exe"> | 130 | <Project name="OpenGridServices.UserServer" path="OpenGridServices.UserServer" type="Exe"> |
131 | <Configuration name="Debug"> | 131 | <Configuration name="Debug"> |
132 | <Options> | 132 | <Options> |
133 | <OutputPath>../bin/</OutputPath> | 133 | <OutputPath>../bin/</OutputPath> |
134 | </Options> | 134 | </Options> |
135 | </Configuration> | 135 | </Configuration> |
136 | <Configuration name="Release"> | 136 | <Configuration name="Release"> |
137 | <Options> | 137 | <Options> |
138 | <OutputPath>../bin/</OutputPath> | 138 | <OutputPath>../bin/</OutputPath> |
139 | </Options> | 139 | </Options> |
140 | </Configuration> | 140 | </Configuration> |
141 | 141 | ||
142 | <ReferencePath>../bin/</ReferencePath> | 142 | <ReferencePath>../bin/</ReferencePath> |
143 | <Reference name="System" localCopy="false"/> | 143 | <Reference name="System" localCopy="false"/> |
144 | <Reference name="System.Data" localCopy="false"/> | 144 | <Reference name="System.Data" localCopy="false"/> |
145 | <Reference name="System.Xml" localCopy="false"/> | 145 | <Reference name="System.Xml" localCopy="false"/> |
146 | <Reference name="OpenSim.Framework"/> | 146 | <Reference name="OpenSim.Framework"/> |
147 | <Reference name="OpenSim.Framework.Console"/> | 147 | <Reference name="OpenSim.Framework.Console"/> |
148 | <Reference name="libsecondlife.dll"/> | 148 | <Reference name="libsecondlife.dll"/> |
149 | <Reference name="Db4objects.Db4o.dll"/> | 149 | <Reference name="Db4objects.Db4o.dll"/> |
150 | 150 | ||
151 | <Files> | 151 | <Files> |
152 | <Match pattern="*.cs" recurse="true"/> | 152 | <Match pattern="*.cs" recurse="true"/> |
153 | </Files> | 153 | </Files> |
154 | </Project> | 154 | </Project> |
155 | 155 | ||
156 | 156 | ||
157 | <Project name="OpenSim.Physics.Manager" path="OpenSim.Physics/Manager" type="Library"> | 157 | <Project name="OpenSim.Physics.Manager" path="OpenSim.Physics/Manager" type="Library"> |
158 | <Configuration name="Debug"> | 158 | <Configuration name="Debug"> |
159 | <Options> | 159 | <Options> |
160 | <OutputPath>../../bin/</OutputPath> | 160 | <OutputPath>../../bin/</OutputPath> |
161 | </Options> | 161 | </Options> |
162 | </Configuration> | 162 | </Configuration> |
163 | <Configuration name="Release"> | 163 | <Configuration name="Release"> |
164 | <Options> | 164 | <Options> |
165 | <OutputPath>../../bin/</OutputPath> | 165 | <OutputPath>../../bin/</OutputPath> |
166 | </Options> | 166 | </Options> |
167 | </Configuration> | 167 | </Configuration> |
168 | 168 | ||
169 | <ReferencePath>../../bin/</ReferencePath> | 169 | <ReferencePath>../../bin/</ReferencePath> |
170 | <Reference name="System" localCopy="false"/> | 170 | <Reference name="System" localCopy="false"/> |
171 | <Reference name="System.Xml" localCopy="false" /> | 171 | <Reference name="System.Xml" localCopy="false" /> |
172 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | 172 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> |
173 | <Reference name="OpenSim.Framework" localCopy="false"/> | 173 | <Reference name="OpenSim.Framework" localCopy="false"/> |
174 | <Reference name="OpenSim.Framework.Console" localCopy="false"/> | 174 | <Reference name="OpenSim.Framework.Console" localCopy="false"/> |
175 | <Files> | 175 | <Files> |
176 | <Match pattern="*.cs" recurse="false"/> | 176 | <Match pattern="*.cs" recurse="false"/> |
177 | </Files> | 177 | </Files> |
178 | </Project> | 178 | </Project> |
179 | 179 | ||
180 | <Project name="OpenGrid.Config.GridConfigDb4o" path="OpenGrid.Config/GridConfigDb4o" type="Library"> | 180 | <Project name="OpenGrid.Config.GridConfigDb4o" path="OpenGrid.Config/GridConfigDb4o" type="Library"> |
181 | <Configuration name="Debug"> | 181 | <Configuration name="Debug"> |
182 | <Options> | 182 | <Options> |
183 | <OutputPath>../../bin/</OutputPath> | 183 | <OutputPath>../../bin/</OutputPath> |
184 | </Options> | 184 | </Options> |
185 | </Configuration> | 185 | </Configuration> |
186 | <Configuration name="Release"> | 186 | <Configuration name="Release"> |
187 | <Options> | 187 | <Options> |
188 | <OutputPath>../../bin/</OutputPath> | 188 | <OutputPath>../../bin/</OutputPath> |
189 | </Options> | 189 | </Options> |
190 | </Configuration> | 190 | </Configuration> |
191 | 191 | ||
192 | <ReferencePath>../../bin/</ReferencePath> | 192 | <ReferencePath>../../bin/</ReferencePath> |
193 | <Reference name="System" localCopy="false"/> | 193 | <Reference name="System" localCopy="false"/> |
194 | <Reference name="System.Data.dll"/> | 194 | <Reference name="System.Data.dll"/> |
195 | <Reference name="System.Xml"/> | 195 | <Reference name="System.Xml"/> |
196 | <Reference name="libsecondlife.dll"/> | 196 | <Reference name="libsecondlife.dll"/> |
197 | <Reference name="Db4objects.Db4o.dll"/> | 197 | <Reference name="Db4objects.Db4o.dll"/> |
198 | <Reference name="OpenSim.Framework"/> | 198 | <Reference name="OpenSim.Framework"/> |
199 | <Reference name="OpenSim.Framework.Console"/> | 199 | <Reference name="OpenSim.Framework.Console"/> |
200 | <Files> | 200 | <Files> |
201 | <Match pattern="*.cs" recurse="true"/> | 201 | <Match pattern="*.cs" recurse="true"/> |
202 | </Files> | 202 | </Files> |
203 | </Project> | 203 | </Project> |
204 | 204 | ||
205 | <Project name="OpenUser.Config.UserConfigDb4o" path="OpenUser.Config/UserConfigDb4o" type="Library"> | 205 | <Project name="OpenUser.Config.UserConfigDb4o" path="OpenUser.Config/UserConfigDb4o" type="Library"> |
206 | <Configuration name="Debug"> | 206 | <Configuration name="Debug"> |
207 | <Options> | 207 | <Options> |
208 | <OutputPath>../../bin/</OutputPath> | 208 | <OutputPath>../../bin/</OutputPath> |
209 | </Options> | 209 | </Options> |
210 | </Configuration> | 210 | </Configuration> |
211 | <Configuration name="Release"> | 211 | <Configuration name="Release"> |
212 | <Options> | 212 | <Options> |
213 | <OutputPath>../../bin/</OutputPath> | 213 | <OutputPath>../../bin/</OutputPath> |
214 | </Options> | 214 | </Options> |
215 | </Configuration> | 215 | </Configuration> |
216 | 216 | ||
217 | <ReferencePath>../../bin/</ReferencePath> | 217 | <ReferencePath>../../bin/</ReferencePath> |
218 | <Reference name="System" localCopy="false"/> | 218 | <Reference name="System" localCopy="false"/> |
219 | <Reference name="System.Data.dll"/> | 219 | <Reference name="System.Data.dll"/> |
220 | <Reference name="System.Xml"/> | 220 | <Reference name="System.Xml"/> |
221 | <Reference name="libsecondlife.dll"/> | 221 | <Reference name="libsecondlife.dll"/> |
222 | <Reference name="Db4objects.Db4o.dll"/> | 222 | <Reference name="Db4objects.Db4o.dll"/> |
223 | <Reference name="OpenSim.Framework"/> | 223 | <Reference name="OpenSim.Framework"/> |
224 | <Reference name="OpenSim.Framework.Console"/> | 224 | <Reference name="OpenSim.Framework.Console"/> |
225 | <Files> | 225 | <Files> |
226 | <Match pattern="*.cs" recurse="true"/> | 226 | <Match pattern="*.cs" recurse="true"/> |
227 | </Files> | 227 | </Files> |
228 | </Project> | 228 | </Project> |
229 | 229 | ||
230 | <!-- Grid Server Plug-ins --> | 230 | <!-- Grid Server Plug-ins --> |
231 | <Project name="OpenSim.GridInterfaces.Local" path="OpenSim.GridInterfaces/Local" type="Library"> | 231 | <Project name="OpenSim.GridInterfaces.Local" path="OpenSim.GridInterfaces/Local" type="Library"> |
232 | <Configuration name="Debug"> | 232 | <Configuration name="Debug"> |
233 | <Options> | 233 | <Options> |
234 | <OutputPath>../../bin/</OutputPath> | 234 | <OutputPath>../../bin/</OutputPath> |
235 | </Options> | 235 | </Options> |
236 | </Configuration> | 236 | </Configuration> |
237 | <Configuration name="Release"> | 237 | <Configuration name="Release"> |
238 | <Options> | 238 | <Options> |
239 | <OutputPath>../../bin/</OutputPath> | 239 | <OutputPath>../../bin/</OutputPath> |
240 | </Options> | 240 | </Options> |
241 | </Configuration> | 241 | </Configuration> |
242 | 242 | ||
243 | <ReferencePath>../../bin/</ReferencePath> | 243 | <ReferencePath>../../bin/</ReferencePath> |
244 | <Reference name="System" localCopy="false"/> | 244 | <Reference name="System" localCopy="false"/> |
245 | <Reference name="System.Xml"/> | 245 | <Reference name="System.Xml"/> |
246 | <Reference name="Db4objects.Db4o.dll"/> | 246 | <Reference name="Db4objects.Db4o.dll"/> |
247 | <Reference name="libsecondlife.dll"/> | 247 | <Reference name="libsecondlife.dll"/> |
248 | <Reference name="OpenSim.Framework"/> | 248 | <Reference name="OpenSim.Framework"/> |
249 | <Reference name="OpenSim.Framework.Console"/> | 249 | <Reference name="OpenSim.Framework.Console"/> |
250 | <Files> | 250 | <Files> |
251 | <Match pattern="*.cs" recurse="true"/> | 251 | <Match pattern="*.cs" recurse="true"/> |
252 | </Files> | 252 | </Files> |
253 | </Project> | 253 | </Project> |
254 | 254 | ||
255 | <Project name="OpenSim.GridInterfaces.Remote" path="OpenSim.GridInterfaces/Remote" type="Library"> | 255 | <Project name="OpenSim.GridInterfaces.Remote" path="OpenSim.GridInterfaces/Remote" type="Library"> |
256 | <Configuration name="Debug"> | 256 | <Configuration name="Debug"> |
257 | <Options> | 257 | <Options> |
258 | <OutputPath>../../bin/</OutputPath> | 258 | <OutputPath>../../bin/</OutputPath> |
259 | </Options> | 259 | </Options> |
260 | </Configuration> | 260 | </Configuration> |
261 | <Configuration name="Release"> | 261 | <Configuration name="Release"> |
262 | <Options> | 262 | <Options> |
263 | <OutputPath>../../bin/</OutputPath> | 263 | <OutputPath>../../bin/</OutputPath> |
264 | </Options> | 264 | </Options> |
265 | </Configuration> | 265 | </Configuration> |
266 | 266 | ||
267 | <ReferencePath>../../bin/</ReferencePath> | 267 | <ReferencePath>../../bin/</ReferencePath> |
268 | <Reference name="System" localCopy="false"/> | 268 | <Reference name="System" localCopy="false"/> |
269 | <Reference name="System.Xml"/> | 269 | <Reference name="System.Xml"/> |
270 | <Reference name="libsecondlife.dll"/> | 270 | <Reference name="libsecondlife.dll"/> |
271 | <Reference name="OpenSim.Framework"/> | 271 | <Reference name="OpenSim.Framework"/> |
272 | <Reference name="OpenSim.Framework.Console"/> | 272 | <Reference name="OpenSim.Framework.Console"/> |
273 | <Files> | 273 | <Files> |
274 | <Match pattern="*.cs" recurse="true"/> | 274 | <Match pattern="*.cs" recurse="true"/> |
275 | </Files> | 275 | </Files> |
276 | </Project> | 276 | </Project> |
277 | 277 | ||
278 | <!-- Physics Plug-ins --> | 278 | <!-- Physics Plug-ins --> |
279 | <Project name="OpenSim.Physics.BasicPhysicsPlugin" path="OpenSim.Physics/BasicPhysicsPlugin" type="Library"> | 279 | <Project name="OpenSim.Physics.BasicPhysicsPlugin" path="OpenSim.Physics/BasicPhysicsPlugin" type="Library"> |
280 | <Configuration name="Debug"> | 280 | <Configuration name="Debug"> |
281 | <Options> | 281 | <Options> |
282 | <OutputPath>../../bin/Physics/</OutputPath> | 282 | <OutputPath>../../bin/Physics/</OutputPath> |
283 | </Options> | 283 | </Options> |
284 | </Configuration> | 284 | </Configuration> |
285 | <Configuration name="Release"> | 285 | <Configuration name="Release"> |
286 | <Options> | 286 | <Options> |
287 | <OutputPath>../../bin/Physics/</OutputPath> | 287 | <OutputPath>../../bin/Physics/</OutputPath> |
288 | </Options> | 288 | </Options> |
289 | </Configuration> | 289 | </Configuration> |
290 | 290 | ||
291 | <ReferencePath>../../bin/</ReferencePath> | 291 | <ReferencePath>../../bin/</ReferencePath> |
292 | <Reference name="System" localCopy="false"/> | 292 | <Reference name="System" localCopy="false"/> |
293 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | 293 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> |
294 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> | 294 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> |
295 | <Files> | 295 | <Files> |
296 | <Match pattern="*.cs" recurse="true"/> | 296 | <Match pattern="*.cs" recurse="true"/> |
297 | </Files> | 297 | </Files> |
298 | </Project> | 298 | </Project> |
299 | 299 | ||
300 | <Project name="OpenSim.Physics.PhysXPlugin" path="OpenSim.Physics/PhysXPlugin" type="Library"> | 300 | <Project name="OpenSim.Physics.PhysXPlugin" path="OpenSim.Physics/PhysXPlugin" type="Library"> |
301 | <Configuration name="Debug"> | 301 | <Configuration name="Debug"> |
302 | <Options> | 302 | <Options> |
303 | <OutputPath>../../bin/Physics/</OutputPath> | 303 | <OutputPath>../../bin/Physics/</OutputPath> |
304 | </Options> | 304 | </Options> |
305 | </Configuration> | 305 | </Configuration> |
306 | <Configuration name="Release"> | 306 | <Configuration name="Release"> |
307 | <Options> | 307 | <Options> |
308 | <OutputPath>../../bin/Physics/</OutputPath> | 308 | <OutputPath>../../bin/Physics/</OutputPath> |
309 | </Options> | 309 | </Options> |
310 | </Configuration> | 310 | </Configuration> |
311 | 311 | ||
312 | <ReferencePath>../../bin/</ReferencePath> | 312 | <ReferencePath>../../bin/</ReferencePath> |
313 | <Reference name="System" localCopy="false"/> | 313 | <Reference name="System" localCopy="false"/> |
314 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | 314 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> |
315 | <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/> | 315 | <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/> |
316 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> | 316 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> |
317 | <Files> | 317 | <Files> |
318 | <Match pattern="*.cs" recurse="true"/> | 318 | <Match pattern="*.cs" recurse="true"/> |
319 | </Files> | 319 | </Files> |
320 | </Project> | 320 | </Project> |
321 | 321 | ||
322 | <Project name="OpenSim.Physics.OdePlugin" path="OpenSim.Physics/OdePlugin" type="Library"> | 322 | <Project name="OpenSim.Physics.OdePlugin" path="OpenSim.Physics/OdePlugin" type="Library"> |
323 | <Configuration name="Debug"> | 323 | <Configuration name="Debug"> |
324 | <Options> | 324 | <Options> |
325 | <OutputPath>../../bin/Physics/</OutputPath> | 325 | <OutputPath>../../bin/Physics/</OutputPath> |
326 | </Options> | 326 | </Options> |
327 | </Configuration> | 327 | </Configuration> |
328 | <Configuration name="Release"> | 328 | <Configuration name="Release"> |
329 | <Options> | 329 | <Options> |
330 | <OutputPath>../../bin/Physics/</OutputPath> | 330 | <OutputPath>../../bin/Physics/</OutputPath> |
331 | </Options> | 331 | </Options> |
332 | </Configuration> | 332 | </Configuration> |
333 | 333 | ||
334 | <ReferencePath>../../bin/</ReferencePath> | 334 | <ReferencePath>../../bin/</ReferencePath> |
335 | <Reference name="System" localCopy="false"/> | 335 | <Reference name="System" localCopy="false"/> |
336 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | 336 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> |
337 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> | 337 | <Reference name="OpenSim.Physics.Manager" localCopy="false"/> |
338 | <Reference name="Ode.NET.dll" localCopy="false" /> | 338 | <Reference name="Ode.NET.dll" localCopy="false" /> |
339 | 339 | ||
340 | <Files> | 340 | <Files> |
341 | <Match pattern="*.cs" recurse="true"/> | 341 | <Match pattern="*.cs" recurse="true"/> |
342 | </Files> | 342 | </Files> |
343 | </Project> | 343 | </Project> |
344 | 344 | ||
345 | <!-- Xml Config Dll --> | 345 | <!-- Xml Config Dll --> |
346 | <Project name="OpenSim.GenericConfig.Xml" path="OpenSim.GenericConfig/Xml" type="Library"> | 346 | <Project name="OpenSim.GenericConfig.Xml" path="OpenSim.GenericConfig/Xml" type="Library"> |
347 | <Configuration name="Debug"> | 347 | <Configuration name="Debug"> |
348 | <Options> | 348 | <Options> |
349 | <OutputPath>../../bin/</OutputPath> | 349 | <OutputPath>../../bin/</OutputPath> |
350 | </Options> | 350 | </Options> |
351 | </Configuration> | 351 | </Configuration> |
352 | <Configuration name="Release"> | 352 | <Configuration name="Release"> |
353 | <Options> | 353 | <Options> |
354 | <OutputPath>../../bin/</OutputPath> | 354 | <OutputPath>../../bin/</OutputPath> |
355 | </Options> | 355 | </Options> |
356 | </Configuration> | 356 | </Configuration> |
357 | 357 | ||
358 | <ReferencePath>../../bin/</ReferencePath> | 358 | <ReferencePath>../../bin/</ReferencePath> |
359 | <Reference name="System"/> | 359 | <Reference name="System"/> |
360 | <Reference name="System.Xml"/> | 360 | <Reference name="System.Xml"/> |
361 | <Reference name="OpenSim.Framework"/> | 361 | <Reference name="OpenSim.Framework"/> |
362 | 362 | ||
363 | <Files> | 363 | <Files> |
364 | <Match pattern="*.cs" recurse="true"/> | 364 | <Match pattern="*.cs" recurse="true"/> |
365 | </Files> | 365 | </Files> |
366 | </Project> | 366 | </Project> |
367 | 367 | ||
368 | <!-- Terrain engine --> | 368 | <!-- Basic embedded JVM --> |
369 | <Project name="OpenSim.Terrain.BasicTerrain" path="OpenSim.Terrain.BasicTerrain" type="Library"> | 369 | <Project name="OpenSim.Scripting.EmbeddedJVM" path="OpenSim.Scripting.EmbeddedJVM" type="Library"> |
370 | <Configuration name="Debug"> | 370 | <Configuration name="Debug"> |
371 | <Options> | 371 | <Options> |
372 | <OutputPath>../bin/</OutputPath> | 372 | <OutputPath>../bin/ScriptEngines/</OutputPath> |
373 | </Options> | 373 | </Options> |
374 | </Configuration> | 374 | </Configuration> |
375 | <Configuration name="Release"> | 375 | <Configuration name="Release"> |
376 | <Options> | 376 | <Options> |
377 | <OutputPath>../bin/</OutputPath> | 377 | <OutputPath>../bin/ScriptEngines/</OutputPath> |
378 | </Options> | 378 | </Options> |
379 | </Configuration> | 379 | </Configuration> |
380 | 380 | ||
381 | <ReferencePath>../bin/</ReferencePath> | 381 | <ReferencePath>../bin/</ReferencePath> |
382 | <Reference name="libTerrain-BSD.dll"/> | 382 | <Reference name="System"/> |
383 | <Reference name="System"/> | 383 | <Reference name="System.Xml"/> |
384 | <Reference name="System.Data"/> | 384 | <Reference name="OpenSim.Framework"/> |
385 | <Reference name="System.Xml"/> | 385 | |
386 | 386 | <Files> | |
387 | <Files> | 387 | <Match pattern="*.cs" recurse="true"/> |
388 | <Match pattern="*.cs" recurse="true"/> | 388 | </Files> |
389 | </Files> | 389 | </Project> |
390 | </Project> | 390 | |
391 | 391 | ||
392 | <Project name="OpenSim.RegionServer" path="OpenSim.RegionServer" type="Library"> | 392 | <!-- Terrain engine --> |
393 | <Configuration name="Debug"> | 393 | <Project name="OpenSim.Terrain.BasicTerrain" path="OpenSim.Terrain.BasicTerrain" type="Library"> |
394 | <Options> | 394 | <Configuration name="Debug"> |
395 | <OutputPath>../bin/</OutputPath> | 395 | <Options> |
396 | </Options> | 396 | <OutputPath>../bin/</OutputPath> |
397 | </Configuration> | 397 | </Options> |
398 | <Configuration name="Release"> | 398 | </Configuration> |
399 | <Options> | 399 | <Configuration name="Release"> |
400 | <OutputPath>../bin/</OutputPath> | 400 | <Options> |
401 | </Options> | 401 | <OutputPath>../bin/</OutputPath> |
402 | </Configuration> | 402 | </Options> |
403 | 403 | </Configuration> | |
404 | <ReferencePath>../bin/</ReferencePath> | 404 | |
405 | <Reference name="System" localCopy="false"/> | 405 | <ReferencePath>../bin/</ReferencePath> |
406 | <Reference name="System.Xml"/> | 406 | <Reference name="libTerrain-BSD.dll"/> |
407 | <Reference name="libsecondlife.dll"/> | 407 | <Reference name="System"/> |
408 | <Reference name="Axiom.MathLib.dll"/> | 408 | <Reference name="System.Data"/> |
409 | <Reference name="Db4objects.Db4o.dll"/> | 409 | <Reference name="System.Xml"/> |
410 | <Reference name="OpenSim.Terrain.BasicTerrain"/> | 410 | |
411 | <Reference name="OpenSim.Framework"/> | 411 | <Files> |
412 | <Reference name="OpenSim.Framework.Console"/> | 412 | <Match pattern="*.cs" recurse="true"/> |
413 | <Reference name="OpenSim.GenericConfig.Xml"/> | 413 | </Files> |
414 | <Reference name="OpenSim.Physics.Manager"/> | 414 | </Project> |
415 | <Reference name="OpenSim.Servers"/> | 415 | |
416 | 416 | <Project name="OpenSim.RegionServer" path="OpenSim.RegionServer" type="Library"> | |
417 | <Files> | 417 | <Configuration name="Debug"> |
418 | <Match pattern="*.cs" recurse="true"/> | 418 | <Options> |
419 | </Files> | 419 | <OutputPath>../bin/</OutputPath> |
420 | </Project> | 420 | </Options> |
421 | 421 | </Configuration> | |
422 | <!-- OpenSim app --> | 422 | <Configuration name="Release"> |
423 | <Project name="OpenSim" path="OpenSim" type="Exe"> | 423 | <Options> |
424 | <Configuration name="Debug"> | 424 | <OutputPath>../bin/</OutputPath> |
425 | <Options> | 425 | </Options> |
426 | <OutputPath>../bin/</OutputPath> | 426 | </Configuration> |
427 | </Options> | 427 | |
428 | </Configuration> | 428 | <ReferencePath>../bin/</ReferencePath> |
429 | <Configuration name="Release"> | 429 | <Reference name="System" localCopy="false"/> |
430 | <Options> | 430 | <Reference name="System.Xml"/> |
431 | <OutputPath>../bin/</OutputPath> | 431 | <Reference name="libsecondlife.dll"/> |
432 | </Options> | 432 | <Reference name="Axiom.MathLib.dll"/> |
433 | </Configuration> | 433 | <Reference name="Db4objects.Db4o.dll"/> |
434 | 434 | <Reference name="OpenSim.Terrain.BasicTerrain"/> | |
435 | <ReferencePath>../bin/</ReferencePath> | 435 | <Reference name="OpenSim.Framework"/> |
436 | <Reference name="System" localCopy="false"/> | 436 | <Reference name="OpenSim.Framework.Console"/> |
437 | <Reference name="System.Xml"/> | 437 | <Reference name="OpenSim.GenericConfig.Xml"/> |
438 | <Reference name="libsecondlife.dll"/> | 438 | <Reference name="OpenSim.Physics.Manager"/> |
439 | <Reference name="Axiom.MathLib.dll"/> | 439 | <Reference name="OpenSim.Servers"/> |
440 | <Reference name="Db4objects.Db4o.dll"/> | 440 | |
441 | <Reference name="OpenSim.Framework"/> | 441 | <Files> |
442 | <Reference name="OpenSim.Framework.Console"/> | 442 | <Match pattern="*.cs" recurse="true"/> |
443 | <Reference name="OpenSim.Physics.Manager"/> | 443 | </Files> |
444 | <Reference name="OpenSim.Servers"/> | 444 | </Project> |
445 | <Reference name="OpenSim.RegionServer"/> | 445 | |
446 | 446 | <!-- OpenSim app --> | |
447 | <Files> | 447 | <Project name="OpenSim" path="OpenSim" type="Exe"> |
448 | <Match pattern="*.cs" recurse="true"/> | 448 | <Configuration name="Debug"> |
449 | </Files> | 449 | <Options> |
450 | </Project> | 450 | <OutputPath>../bin/</OutputPath> |
451 | 451 | </Options> | |
452 | <!-- Storage Plug-ins --> | 452 | </Configuration> |
453 | <Project name="OpenSim.Storage.LocalStorageDb4o" path="OpenSim.Storage/LocalStorageDb4o" type="Library"> | 453 | <Configuration name="Release"> |
454 | <Configuration name="Debug"> | 454 | <Options> |
455 | <Options> | 455 | <OutputPath>../bin/</OutputPath> |
456 | <OutputPath>../../bin/</OutputPath> | 456 | </Options> |
457 | </Options> | 457 | </Configuration> |
458 | </Configuration> | 458 | |
459 | <Configuration name="Release"> | 459 | <ReferencePath>../bin/</ReferencePath> |
460 | <Options> | 460 | <Reference name="System" localCopy="false"/> |
461 | <OutputPath>../../bin/</OutputPath> | 461 | <Reference name="System.Xml"/> |
462 | </Options> | 462 | <Reference name="libsecondlife.dll"/> |
463 | </Configuration> | 463 | <Reference name="Axiom.MathLib.dll"/> |
464 | 464 | <Reference name="Db4objects.Db4o.dll"/> | |
465 | <ReferencePath>../../bin/</ReferencePath> | 465 | <Reference name="OpenSim.Framework"/> |
466 | <Reference name="System" localCopy="false"/> | 466 | <Reference name="OpenSim.Framework.Console"/> |
467 | <Reference name="System.Xml"/> | 467 | <Reference name="OpenSim.Physics.Manager"/> |
468 | <Reference name="Db4objects.Db4o.dll"/> | 468 | <Reference name="OpenSim.Servers"/> |
469 | <Reference name="libsecondlife.dll"/> | 469 | <Reference name="OpenSim.RegionServer"/> |
470 | <Reference name="OpenSim.Framework"/> | 470 | |
471 | <Reference name="OpenSim.Framework.Console"/> | 471 | <Files> |
472 | <Files> | 472 | <Match pattern="*.cs" recurse="true"/> |
473 | <Match pattern="*.cs" recurse="true"/> | 473 | </Files> |
474 | </Files> | 474 | </Project> |
475 | </Project> | 475 | |
476 | 476 | <!-- Storage Plug-ins --> | |
477 | <Project name="OpenSim.Storage.LocalStorageSQLite" path="OpenSim.Storage.LocalStorageSQLite" type="Library"> | 477 | <Project name="OpenSim.Storage.LocalStorageDb4o" path="OpenSim.Storage/LocalStorageDb4o" type="Library"> |
478 | <Configuration name="Debug"> | 478 | <Configuration name="Debug"> |
479 | <Options> | 479 | <Options> |
480 | <OutputPath>../bin/</OutputPath> | 480 | <OutputPath>../../bin/</OutputPath> |
481 | </Options> | 481 | </Options> |
482 | </Configuration> | 482 | </Configuration> |
483 | <Configuration name="Release"> | 483 | <Configuration name="Release"> |
484 | <Options> | 484 | <Options> |
485 | <OutputPath>../bin/</OutputPath> | 485 | <OutputPath>../../bin/</OutputPath> |
486 | </Options> | 486 | </Options> |
487 | </Configuration> | 487 | </Configuration> |
488 | 488 | ||
489 | <ReferencePath>../bin/</ReferencePath> | 489 | <ReferencePath>../../bin/</ReferencePath> |
490 | <Reference name="System" localCopy="false"/> | 490 | <Reference name="System" localCopy="false"/> |
491 | <Reference name="System.Xml"/> | 491 | <Reference name="System.Xml"/> |
492 | <Reference name="System.Data"/> | 492 | <Reference name="Db4objects.Db4o.dll"/> |
493 | <Reference name="System.Data.SQLite.dll"/> | 493 | <Reference name="libsecondlife.dll"/> |
494 | <Reference name="libsecondlife.dll"/> | 494 | <Reference name="OpenSim.Framework"/> |
495 | <Reference name="OpenSim.Framework"/> | 495 | <Reference name="OpenSim.Framework.Console"/> |
496 | <Reference name="OpenSim.Framework.Console"/> | 496 | <Files> |
497 | <Files> | 497 | <Match pattern="*.cs" recurse="true"/> |
498 | <Match pattern="*.cs" recurse="true"/> | 498 | </Files> |
499 | </Files> | 499 | </Project> |
500 | </Project> | 500 | |
501 | 501 | <Project name="OpenSim.Storage.LocalStorageSQLite" path="OpenSim.Storage.LocalStorageSQLite" type="Library"> | |
502 | <Project name="OpenSim.Storage.LocalStorageBerkeleyDB" path="OpenSim.Storage.LocalStorageBerkeleyDB" type="Library"> | 502 | <Configuration name="Debug"> |
503 | <Configuration name="Debug"> | 503 | <Options> |
504 | <Options> | 504 | <OutputPath>../bin/</OutputPath> |
505 | <OutputPath>../bin/</OutputPath> | 505 | </Options> |
506 | </Options> | 506 | </Configuration> |
507 | </Configuration> | 507 | <Configuration name="Release"> |
508 | <Configuration name="Release"> | 508 | <Options> |
509 | <Options> | 509 | <OutputPath>../bin/</OutputPath> |
510 | <OutputPath>../bin/</OutputPath> | 510 | </Options> |
511 | </Options> | 511 | </Configuration> |
512 | </Configuration> | 512 | |
513 | 513 | <ReferencePath>../bin/</ReferencePath> | |
514 | <ReferencePath>../bin/</ReferencePath> | 514 | <Reference name="System" localCopy="false"/> |
515 | <Reference name="System" localCopy="false"/> | 515 | <Reference name="System.Xml"/> |
516 | <Reference name="System.Xml"/> | 516 | <Reference name="System.Data"/> |
517 | <Reference name="System.Data"/> | 517 | <Reference name="System.Data.SQLite.dll"/> |
518 | <Reference name="Kds.Serialization.dll"/> | 518 | <Reference name="libsecondlife.dll"/> |
519 | <Reference name="libdb_dotNET43.dll"/> | 519 | <Reference name="OpenSim.Framework"/> |
520 | <Reference name="libsecondlife.dll"/> | 520 | <Reference name="OpenSim.Framework.Console"/> |
521 | <Reference name="OpenSim.Framework"/> | 521 | <Files> |
522 | <Reference name="OpenSim.Framework.Console"/> | 522 | <Match pattern="*.cs" recurse="true"/> |
523 | <Files> | 523 | </Files> |
524 | <Match pattern="*.cs" recurse="true"/> | 524 | </Project> |
525 | </Files> | 525 | |
526 | </Project> | 526 | <Project name="OpenSim.Storage.LocalStorageBerkeleyDB" path="OpenSim.Storage.LocalStorageBerkeleyDB" type="Library"> |
527 | 527 | <Configuration name="Debug"> | |
528 | </Solution> | 528 | <Options> |
529 | 529 | <OutputPath>../bin/</OutputPath> | |
530 | 530 | </Options> | |
531 | 531 | </Configuration> | |
532 | 532 | <Configuration name="Release"> | |
533 | 533 | <Options> | |
534 | 534 | <OutputPath>../bin/</OutputPath> | |
535 | 535 | </Options> | |
536 | 536 | </Configuration> | |
537 | 537 | ||
538 | <!-- Prebuild tool --> | 538 | <ReferencePath>../bin/</ReferencePath> |
539 | <Solution name="Prebuild" path="Prebuild/" > | 539 | <Reference name="System" localCopy="false"/> |
540 | <Configuration name="Debug"> | 540 | <Reference name="System.Xml"/> |
541 | <Options> | 541 | <Reference name="System.Data"/> |
542 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | 542 | <Reference name="Kds.Serialization.dll"/> |
543 | <OptimizeCode>false</OptimizeCode> | 543 | <Reference name="libdb_dotNET43.dll"/> |
544 | <OutputPath>bin/Debug</OutputPath> | 544 | <Reference name="libsecondlife.dll"/> |
545 | <DebugInformation>true</DebugInformation> | 545 | <Reference name="OpenSim.Framework"/> |
546 | <SuppressWarnings>1595</SuppressWarnings> | 546 | <Reference name="OpenSim.Framework.Console"/> |
547 | </Options> | 547 | <Files> |
548 | </Configuration> | 548 | <Match pattern="*.cs" recurse="true"/> |
549 | <Configuration name="Release"> | 549 | </Files> |
550 | <Options> | 550 | </Project> |
551 | <CompilerDefines>TRACE</CompilerDefines> | 551 | |
552 | <OutputPath>bin/Release</OutputPath> | 552 | </Solution> |
553 | <OptimizeCode>true</OptimizeCode> | 553 | |
554 | <DebugInformation>false</DebugInformation> | 554 | |
555 | <SuppressWarnings>1595</SuppressWarnings> | 555 | |
556 | </Options> | 556 | |
557 | </Configuration> | 557 | |
558 | <Project name="Prebuild" path="src/" language="C#" assemblyName="prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild"> | 558 | |
559 | <Configuration name="Debug"> | 559 | |
560 | <Options> | 560 | |
561 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | 561 | |
562 | <OptimizeCode>false</OptimizeCode> | 562 | <!-- Prebuild tool --> |
563 | <OutputPath>..\..\bin\</OutputPath> | 563 | <Solution name="Prebuild" path="Prebuild/" > |
564 | <DebugInformation>true</DebugInformation> | 564 | <Configuration name="Debug"> |
565 | <KeyFile>Prebuild.snk</KeyFile> | 565 | <Options> |
566 | <SuppressWarnings>1595</SuppressWarnings> | 566 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> |
567 | </Options> | 567 | <OptimizeCode>false</OptimizeCode> |
568 | </Configuration> | 568 | <OutputPath>bin/Debug</OutputPath> |
569 | <Configuration name="Release"> | 569 | <DebugInformation>true</DebugInformation> |
570 | <Options> | 570 | <SuppressWarnings>1595</SuppressWarnings> |
571 | <CompilerDefines>TRACE</CompilerDefines> | 571 | </Options> |
572 | <OutputPath>..\..\bin\</OutputPath> | 572 | </Configuration> |
573 | <OptimizeCode>true</OptimizeCode> | 573 | <Configuration name="Release"> |
574 | <DebugInformation>false</DebugInformation> | 574 | <Options> |
575 | <KeyFile>Prebuild.snk</KeyFile> | 575 | <CompilerDefines>TRACE</CompilerDefines> |
576 | <SuppressWarnings>1595</SuppressWarnings> | 576 | <OutputPath>bin/Release</OutputPath> |
577 | </Options> | 577 | <OptimizeCode>true</OptimizeCode> |
578 | </Configuration> | 578 | <DebugInformation>false</DebugInformation> |
579 | <ReferencePath>../../bin/</ReferencePath> | 579 | <SuppressWarnings>1595</SuppressWarnings> |
580 | <Reference name="System.EnterpriseServices" /> | 580 | </Options> |
581 | <Reference name="System.Xml" /> | 581 | </Configuration> |
582 | <Reference name="System" /> | 582 | <Project name="Prebuild" path="src/" language="C#" assemblyName="prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild"> |
583 | <Files> | 583 | <Configuration name="Debug"> |
584 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | 584 | <Options> |
585 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | 585 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> |
586 | <Match pattern="*.cs" recurse="true"/> | 586 | <OptimizeCode>false</OptimizeCode> |
587 | </Files> | 587 | <OutputPath>..\..\bin\</OutputPath> |
588 | </Project> | 588 | <DebugInformation>true</DebugInformation> |
589 | </Solution> | 589 | <KeyFile>Prebuild.snk</KeyFile> |
590 | </Prebuild> | 590 | <SuppressWarnings>1595</SuppressWarnings> |
591 | 591 | </Options> | |
592 | 592 | </Configuration> | |
593 | <Configuration name="Release"> | ||
594 | <Options> | ||
595 | <CompilerDefines>TRACE</CompilerDefines> | ||
596 | <OutputPath>..\..\bin\</OutputPath> | ||
597 | <OptimizeCode>true</OptimizeCode> | ||
598 | <DebugInformation>false</DebugInformation> | ||
599 | <KeyFile>Prebuild.snk</KeyFile> | ||
600 | <SuppressWarnings>1595</SuppressWarnings> | ||
601 | </Options> | ||
602 | </Configuration> | ||
603 | <ReferencePath>../../bin/</ReferencePath> | ||
604 | <Reference name="System.EnterpriseServices" /> | ||
605 | <Reference name="System.Xml" /> | ||
606 | <Reference name="System" /> | ||
607 | <Files> | ||
608 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | ||
609 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | ||
610 | <Match pattern="*.cs" recurse="true"/> | ||
611 | </Files> | ||
612 | </Project> | ||
613 | </Solution> | ||
614 | </Prebuild> | ||
615 | |||
616 | |||