diff options
author | MW | 2007-06-27 15:28:52 +0000 |
---|---|---|
committer | MW | 2007-06-27 15:28:52 +0000 |
commit | 646bbbc84b8010e0dacbeed5342cdb045f46cc49 (patch) | |
tree | 770b34d19855363c3c113ab9a0af9a56d821d887 /prebuild.xml | |
download | opensim-SC_OLD-646bbbc84b8010e0dacbeed5342cdb045f46cc49.zip opensim-SC_OLD-646bbbc84b8010e0dacbeed5342cdb045f46cc49.tar.gz opensim-SC_OLD-646bbbc84b8010e0dacbeed5342cdb045f46cc49.tar.bz2 opensim-SC_OLD-646bbbc84b8010e0dacbeed5342cdb045f46cc49.tar.xz |
Some work on restructuring the namespaces / project names. Note this doesn't compile yet as not all the code has been changed to use the new namespaces. Am committing it now for feedback on the namespaces.
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 1105 |
1 files changed, 1105 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml new file mode 100644 index 0000000..c20be88 --- /dev/null +++ b/prebuild.xml | |||
@@ -0,0 +1,1105 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> | ||
3 | <Solution name="OpenSim" activeConfig="Debug" path="./"> | ||
4 | <Configuration name="Debug"> | ||
5 | <Options> | ||
6 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | ||
7 | <OptimizeCode>false</OptimizeCode> | ||
8 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
9 | <AllowUnsafe>false</AllowUnsafe> | ||
10 | <WarningLevel>4</WarningLevel> | ||
11 | <WarningsAsErrors>false</WarningsAsErrors> | ||
12 | <SuppressWarnings></SuppressWarnings> | ||
13 | <OutputPath>bin</OutputPath> | ||
14 | <DebugInformation>true</DebugInformation> | ||
15 | <IncrementalBuild>true</IncrementalBuild> | ||
16 | <NoStdLib>false</NoStdLib> | ||
17 | </Options> | ||
18 | </Configuration> | ||
19 | <Configuration name="Release"> | ||
20 | <Options> | ||
21 | <CompilerDefines>TRACE</CompilerDefines> | ||
22 | <OptimizeCode>true</OptimizeCode> | ||
23 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
24 | <AllowUnsafe>false</AllowUnsafe> | ||
25 | <WarningLevel>4</WarningLevel> | ||
26 | <WarningsAsErrors>false</WarningsAsErrors> | ||
27 | <SuppressWarnings></SuppressWarnings> | ||
28 | <OutputPath>bin</OutputPath> | ||
29 | <DebugInformation>false</DebugInformation> | ||
30 | <IncrementalBuild>true</IncrementalBuild> | ||
31 | <NoStdLib>false</NoStdLib> | ||
32 | </Options> | ||
33 | </Configuration> | ||
34 | |||
35 | |||
36 | <!-- Core OpenSim Projects --> | ||
37 | |||
38 | <Project name="OpenSim.Framework.Console" path="OpenSim/Framework/Console" type="Library"> | ||
39 | <Configuration name="Debug"> | ||
40 | <Options> | ||
41 | <OutputPath>../../../bin/</OutputPath> | ||
42 | </Options> | ||
43 | </Configuration> | ||
44 | <Configuration name="Release"> | ||
45 | <Options> | ||
46 | <OutputPath>../../../bin/</OutputPath> | ||
47 | </Options> | ||
48 | </Configuration> | ||
49 | |||
50 | <ReferencePath>../../../bin/</ReferencePath> | ||
51 | <Reference name="System" localCopy="false"/> | ||
52 | <Files> | ||
53 | <Match pattern="*.cs" recurse="true"/> | ||
54 | </Files> | ||
55 | </Project> | ||
56 | |||
57 | <Project name="OpenSim.Framework" path="OpenSim/Framework/General" type="Library"> | ||
58 | <Configuration name="Debug"> | ||
59 | <Options> | ||
60 | <OutputPath>../../../bin/</OutputPath> | ||
61 | </Options> | ||
62 | </Configuration> | ||
63 | <Configuration name="Release"> | ||
64 | <Options> | ||
65 | <OutputPath>../../../bin/</OutputPath> | ||
66 | </Options> | ||
67 | </Configuration> | ||
68 | |||
69 | <ReferencePath>../../../bin/</ReferencePath> | ||
70 | <Reference name="System"/> | ||
71 | <Reference name="System.Xml"/> | ||
72 | <Reference name="libsecondlife.dll"/> | ||
73 | <Reference name="Db4objects.Db4o.dll"/> | ||
74 | <Reference name="XMLRPC.dll"/> | ||
75 | <Reference name="OpenSim.Framework.Console"/> | ||
76 | <Files> | ||
77 | <Match pattern="*.cs" recurse="true"/> | ||
78 | </Files> | ||
79 | </Project> | ||
80 | |||
81 | <Project name="OpenSim.Framework.Servers" path="OpenSim/Framework/Servers" type="Library"> | ||
82 | <Configuration name="Debug"> | ||
83 | <Options> | ||
84 | <OutputPath>../../../bin/</OutputPath> | ||
85 | </Options> | ||
86 | </Configuration> | ||
87 | <Configuration name="Release"> | ||
88 | <Options> | ||
89 | <OutputPath>../../../bin/</OutputPath> | ||
90 | </Options> | ||
91 | </Configuration> | ||
92 | |||
93 | <ReferencePath>../../../bin/</ReferencePath> | ||
94 | <Reference name="System"/> | ||
95 | <Reference name="System.Xml"/> | ||
96 | <Reference name="OpenSim.Framework"/> | ||
97 | <Reference name="OpenSim.Framework.Console"/> | ||
98 | <Reference name="libsecondlife.dll"/> | ||
99 | <Reference name="XMLRPC.dll"/> | ||
100 | |||
101 | <Files> | ||
102 | <Match pattern="*.cs" recurse="true"/> | ||
103 | </Files> | ||
104 | </Project> | ||
105 | |||
106 | <Project name="OpenSim.Region.Caches" path="OpenSim/Region/Caches" type="Library"> | ||
107 | <Configuration name="Debug"> | ||
108 | <Options> | ||
109 | <OutputPath>../../../bin/</OutputPath> | ||
110 | </Options> | ||
111 | </Configuration> | ||
112 | <Configuration name="Release"> | ||
113 | <Options> | ||
114 | <OutputPath>../../../bin/</OutputPath> | ||
115 | </Options> | ||
116 | </Configuration> | ||
117 | |||
118 | <ReferencePath>../../../bin/</ReferencePath> | ||
119 | <Reference name="System"/> | ||
120 | <Reference name="System.Xml"/> | ||
121 | <Reference name="libsecondlife.dll"/> | ||
122 | <Reference name="OpenSim.Framework"/> | ||
123 | <Files> | ||
124 | <Match pattern="*.cs" recurse="true"/> | ||
125 | </Files> | ||
126 | </Project> | ||
127 | |||
128 | |||
129 | <!-- Storage Plug-ins --> | ||
130 | <Project name="OpenSim.Region.Storage.LocalStorageDb4o" path="OpenSim/Region/Storage/LocalStorageDb4o" type="Library"> | ||
131 | <Configuration name="Debug"> | ||
132 | <Options> | ||
133 | <OutputPath>../../../../bin/</OutputPath> | ||
134 | </Options> | ||
135 | </Configuration> | ||
136 | <Configuration name="Release"> | ||
137 | <Options> | ||
138 | <OutputPath>../../../../bin/</OutputPath> | ||
139 | </Options> | ||
140 | </Configuration> | ||
141 | |||
142 | <ReferencePath>../../../../bin/</ReferencePath> | ||
143 | <Reference name="System" localCopy="false"/> | ||
144 | <Reference name="System.Xml"/> | ||
145 | <Reference name="Db4objects.Db4o.dll"/> | ||
146 | <Reference name="libsecondlife.dll"/> | ||
147 | <Reference name="OpenSim.Framework"/> | ||
148 | <Reference name="OpenSim.Framework.Console"/> | ||
149 | <Files> | ||
150 | <Match pattern="*.cs" recurse="true"/> | ||
151 | </Files> | ||
152 | </Project> | ||
153 | |||
154 | <Project name="OpenSim.Region.Storage.LocalStorageSQLite" path="OpenSim/Region/Storage/LocalStorageSQLite" type="Library"> | ||
155 | <Configuration name="Debug"> | ||
156 | <Options> | ||
157 | <OutputPath>../../../../bin/</OutputPath> | ||
158 | </Options> | ||
159 | </Configuration> | ||
160 | <Configuration name="Release"> | ||
161 | <Options> | ||
162 | <OutputPath>../../../../bin/</OutputPath> | ||
163 | </Options> | ||
164 | </Configuration> | ||
165 | |||
166 | <ReferencePath>../../../../bin/</ReferencePath> | ||
167 | <Reference name="System" localCopy="false"/> | ||
168 | <Reference name="System.Xml"/> | ||
169 | <Reference name="System.Data"/> | ||
170 | <Reference name="System.Data.SQLite.dll"/> | ||
171 | <Reference name="libsecondlife.dll"/> | ||
172 | <Reference name="OpenSim.Framework"/> | ||
173 | <Reference name="OpenSim.Framework.Console"/> | ||
174 | <Files> | ||
175 | <Match pattern="*.cs" recurse="true"/> | ||
176 | </Files> | ||
177 | </Project> | ||
178 | |||
179 | <Project name="OpenSim.Region.Storage.LocalStorageBerkeleyDB" path="OpenSim/Region/Storage/LocalStorageBerkeleyDB" type="Library"> | ||
180 | <Configuration name="Debug"> | ||
181 | <Options> | ||
182 | <OutputPath>../../../../bin/</OutputPath> | ||
183 | </Options> | ||
184 | </Configuration> | ||
185 | <Configuration name="Release"> | ||
186 | <Options> | ||
187 | <OutputPath>../../../../bin/</OutputPath> | ||
188 | </Options> | ||
189 | </Configuration> | ||
190 | |||
191 | <ReferencePath>../../../../bin/</ReferencePath> | ||
192 | <Reference name="System" localCopy="false"/> | ||
193 | <Reference name="System.Xml"/> | ||
194 | <Reference name="System.Data"/> | ||
195 | <Reference name="Kds.Serialization.dll"/> | ||
196 | <Reference name="libdb_dotNET43.dll"/> | ||
197 | <Reference name="libsecondlife.dll"/> | ||
198 | <Reference name="OpenSim.Framework"/> | ||
199 | <Reference name="OpenSim.Framework.Console"/> | ||
200 | <Files> | ||
201 | <Match pattern="*.cs" recurse="true"/> | ||
202 | </Files> | ||
203 | </Project> | ||
204 | |||
205 | <!-- Grid Server Plug-ins --> | ||
206 | <Project name="OpenSim.Region.GridInterfaces.Local" path="OpenSim/Region/GridInterfaces/Local" type="Library"> | ||
207 | <Configuration name="Debug"> | ||
208 | <Options> | ||
209 | <OutputPath>../../../../bin/</OutputPath> | ||
210 | </Options> | ||
211 | </Configuration> | ||
212 | <Configuration name="Release"> | ||
213 | <Options> | ||
214 | <OutputPath>../../../../bin/</OutputPath> | ||
215 | </Options> | ||
216 | </Configuration> | ||
217 | |||
218 | <ReferencePath>../../../../bin/</ReferencePath> | ||
219 | <Reference name="System" localCopy="false"/> | ||
220 | <Reference name="System.Xml"/> | ||
221 | <Reference name="Db4objects.Db4o.dll"/> | ||
222 | <Reference name="libsecondlife.dll"/> | ||
223 | <Reference name="OpenSim.Framework"/> | ||
224 | <Reference name="OpenSim.Framework.Console"/> | ||
225 | <Files> | ||
226 | <Match pattern="*.cs" recurse="true"/> | ||
227 | </Files> | ||
228 | </Project> | ||
229 | |||
230 | <Project name="OpenSim.Region.GridInterfaces.Remote" path="OpenSim/Region/GridInterfaces/Remote" type="Library"> | ||
231 | <Configuration name="Debug"> | ||
232 | <Options> | ||
233 | <OutputPath>../../../../bin/</OutputPath> | ||
234 | </Options> | ||
235 | </Configuration> | ||
236 | <Configuration name="Release"> | ||
237 | <Options> | ||
238 | <OutputPath>../../../../bin/</OutputPath> | ||
239 | </Options> | ||
240 | </Configuration> | ||
241 | |||
242 | <ReferencePath>../../../../bin/</ReferencePath> | ||
243 | <Reference name="System" localCopy="false"/> | ||
244 | <Reference name="System.Xml"/> | ||
245 | <Reference name="libsecondlife.dll"/> | ||
246 | <Reference name="OpenSim.Framework"/> | ||
247 | <Reference name="OpenSim.Framework.Console"/> | ||
248 | <Reference name="XMLRPC.dll"/> | ||
249 | <Files> | ||
250 | <Match pattern="*.cs" recurse="true"/> | ||
251 | </Files> | ||
252 | </Project> | ||
253 | |||
254 | |||
255 | <Project name="OpenSim.Region.Physics.Manager" path="OpenSim/Region/Physics/Manager" type="Library"> | ||
256 | <Configuration name="Debug"> | ||
257 | <Options> | ||
258 | <OutputPath>../../../../bin/</OutputPath> | ||
259 | </Options> | ||
260 | </Configuration> | ||
261 | <Configuration name="Release"> | ||
262 | <Options> | ||
263 | <OutputPath>../../../../bin/</OutputPath> | ||
264 | </Options> | ||
265 | </Configuration> | ||
266 | |||
267 | <ReferencePath>../../../../bin/</ReferencePath> | ||
268 | <Reference name="System" localCopy="false"/> | ||
269 | <Reference name="System.Xml" localCopy="false" /> | ||
270 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
271 | <Reference name="OpenSim.Framework" localCopy="false"/> | ||
272 | <Reference name="OpenSim.Framework.Console" localCopy="false"/> | ||
273 | <Files> | ||
274 | <Match pattern="*.cs" recurse="false"/> | ||
275 | </Files> | ||
276 | </Project> | ||
277 | |||
278 | |||
279 | <!-- Physics Plug-ins --> | ||
280 | <Project name="OpenSim.Region.Physics.BasicPhysicsPlugin" path="OpenSim/Region/Physics/BasicPhysicsPlugin" type="Library"> | ||
281 | <Configuration name="Debug"> | ||
282 | <Options> | ||
283 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
284 | </Options> | ||
285 | </Configuration> | ||
286 | <Configuration name="Release"> | ||
287 | <Options> | ||
288 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
289 | </Options> | ||
290 | </Configuration> | ||
291 | |||
292 | <ReferencePath>../../../../bin/</ReferencePath> | ||
293 | <Reference name="System" localCopy="false"/> | ||
294 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
295 | <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/> | ||
296 | <Files> | ||
297 | <Match pattern="*.cs" recurse="true"/> | ||
298 | </Files> | ||
299 | </Project> | ||
300 | |||
301 | <Project name="OpenSim.Region.Physics.PhysXPlugin" path="OpenSim/Region/Physics/PhysXPlugin" type="Library"> | ||
302 | <Configuration name="Debug"> | ||
303 | <Options> | ||
304 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
305 | </Options> | ||
306 | </Configuration> | ||
307 | <Configuration name="Release"> | ||
308 | <Options> | ||
309 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
310 | </Options> | ||
311 | </Configuration> | ||
312 | |||
313 | <ReferencePath>../../../../bin/</ReferencePath> | ||
314 | <Reference name="System" localCopy="false"/> | ||
315 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
316 | <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/> | ||
317 | <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/> | ||
318 | <Files> | ||
319 | <Match pattern="*.cs" recurse="true"/> | ||
320 | </Files> | ||
321 | </Project> | ||
322 | |||
323 | <Project name="OpenSim.Region.Physics.OdePlugin" path="OpenSim/Region/Physics/OdePlugin" type="Library"> | ||
324 | <Configuration name="Debug"> | ||
325 | <Options> | ||
326 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
327 | </Options> | ||
328 | </Configuration> | ||
329 | <Configuration name="Release"> | ||
330 | <Options> | ||
331 | <OutputPath>../../../../bin/Physics/</OutputPath> | ||
332 | </Options> | ||
333 | </Configuration> | ||
334 | |||
335 | <ReferencePath>../../../../bin/</ReferencePath> | ||
336 | <Reference name="System" localCopy="false"/> | ||
337 | <Reference name="Axiom.MathLib.dll" localCopy="false"/> | ||
338 | <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/> | ||
339 | <Reference name="Ode.NET.dll" localCopy="false" /> | ||
340 | |||
341 | <Files> | ||
342 | <Match pattern="*.cs" recurse="true"/> | ||
343 | </Files> | ||
344 | </Project> | ||
345 | |||
346 | <!-- Xml Config Dll --> | ||
347 | <Project name="OpenSim.Framework.GenericConfig.Xml" path="OpenSim/Framework/GenericConfig/Xml" type="Library"> | ||
348 | <Configuration name="Debug"> | ||
349 | <Options> | ||
350 | <OutputPath>../../../../bin/</OutputPath> | ||
351 | </Options> | ||
352 | </Configuration> | ||
353 | <Configuration name="Release"> | ||
354 | <Options> | ||
355 | <OutputPath>../../../../bin/</OutputPath> | ||
356 | </Options> | ||
357 | </Configuration> | ||
358 | |||
359 | <ReferencePath>../../../../bin/</ReferencePath> | ||
360 | <Reference name="System"/> | ||
361 | <Reference name="System.Xml"/> | ||
362 | <Reference name="OpenSim.Framework"/> | ||
363 | |||
364 | <Files> | ||
365 | <Match pattern="*.cs" recurse="true"/> | ||
366 | </Files> | ||
367 | </Project> | ||
368 | |||
369 | <!-- Terrain engine --> | ||
370 | <Project name="OpenSim.Region.Terrain.BasicTerrain" path="OpenSim/Region/Terrain.BasicTerrain" type="Library"> | ||
371 | <Configuration name="Debug"> | ||
372 | <Options> | ||
373 | <OutputPath>../../../bin/</OutputPath> | ||
374 | </Options> | ||
375 | </Configuration> | ||
376 | <Configuration name="Release"> | ||
377 | <Options> | ||
378 | <OutputPath>../../../bin/</OutputPath> | ||
379 | </Options> | ||
380 | </Configuration> | ||
381 | |||
382 | <ReferencePath>../../../bin/</ReferencePath> | ||
383 | <Reference name="System"/> | ||
384 | <Reference name="System.Drawing"/> | ||
385 | <Reference name="System.Data"/> | ||
386 | <Reference name="System.Xml"/> | ||
387 | <Reference name="Microsoft.JScript"/> | ||
388 | <Reference name="libTerrain-BSD.dll"/> | ||
389 | <Reference name="openjpegnet.dll" /> | ||
390 | |||
391 | <Files> | ||
392 | <Match pattern="*.cs" recurse="true"/> | ||
393 | </Files> | ||
394 | </Project> | ||
395 | |||
396 | <Project name="OpenSim.Framework.Data" path="OpenSim/Framework/Data" type="Library"> | ||
397 | <Configuration name="Debug"> | ||
398 | <Options> | ||
399 | <OutputPath>../../../bin/</OutputPath> | ||
400 | </Options> | ||
401 | </Configuration> | ||
402 | <Configuration name="Release"> | ||
403 | <Options> | ||
404 | <OutputPath>../../../bin/</OutputPath> | ||
405 | </Options> | ||
406 | </Configuration> | ||
407 | |||
408 | <ReferencePath>../../../bin/</ReferencePath> | ||
409 | <Reference name="System" localCopy="false"/> | ||
410 | <Reference name="System.Xml"/> | ||
411 | <Reference name="System.Data"/> | ||
412 | <Reference name="libsecondlife.dll"/> | ||
413 | <Files> | ||
414 | <Match pattern="*.cs" recurse="true"/> | ||
415 | </Files> | ||
416 | </Project> | ||
417 | |||
418 | <Project name="OpenSim.Framework.Data.DB4o" path="OpenSim/Framework/Data.DB4o" type="Library"> | ||
419 | <Configuration name="Debug"> | ||
420 | <Options> | ||
421 | <OutputPath>../../../bin/</OutputPath> | ||
422 | </Options> | ||
423 | </Configuration> | ||
424 | <Configuration name="Release"> | ||
425 | <Options> | ||
426 | <OutputPath>../../../bin/</OutputPath> | ||
427 | </Options> | ||
428 | </Configuration> | ||
429 | |||
430 | <ReferencePath>../../../bin/</ReferencePath> | ||
431 | <Reference name="System" localCopy="false"/> | ||
432 | <Reference name="System.Xml"/> | ||
433 | <Reference name="System.Data"/> | ||
434 | <Reference name="OpenSim.Framework.Data"/> | ||
435 | <Reference name="libsecondlife.dll"/> | ||
436 | <Reference name="Db4objects.Db4o.dll"/> | ||
437 | <Files> | ||
438 | <Match pattern="*.cs" recurse="true"/> | ||
439 | </Files> | ||
440 | </Project> | ||
441 | |||
442 | <Project name="OpenSim.Framework.UserManagement" path="OpenSim/Framework/UserManager" type="Library"> | ||
443 | <Configuration name="Debug"> | ||
444 | <Options> | ||
445 | <OutputPath>../../../bin/</OutputPath> | ||
446 | </Options> | ||
447 | </Configuration> | ||
448 | <Configuration name="Release"> | ||
449 | <Options> | ||
450 | <OutputPath>../../../bin/</OutputPath> | ||
451 | </Options> | ||
452 | </Configuration> | ||
453 | |||
454 | <ReferencePath>../../../bin/</ReferencePath> | ||
455 | <Reference name="System" localCopy="false"/> | ||
456 | <Reference name="System.Data" localCopy="false"/> | ||
457 | <Reference name="System.Xml" localCopy="false"/> | ||
458 | <Reference name="XMLRPC.dll"/> | ||
459 | <Reference name="OpenSim.Framework"/> | ||
460 | <Reference name="OpenSim.Framework.Console"/> | ||
461 | <Reference name="OpenSim.Framework.Data"/> | ||
462 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
463 | <Reference name="OpenSim.Framework.Servers"/> | ||
464 | <Reference name="libsecondlife.dll"/> | ||
465 | <Reference name="Db4objects.Db4o.dll"/> | ||
466 | |||
467 | <Files> | ||
468 | <Match pattern="*.cs" recurse="true"/> | ||
469 | </Files> | ||
470 | </Project> | ||
471 | |||
472 | <!-- OpenGridFrameWork.Communications" --> | ||
473 | <Project name="OpenSim.Framework.Communications" path="OpenSim/Framework/Communications" type="Library"> | ||
474 | <Configuration name="Debug"> | ||
475 | <Options> | ||
476 | <OutputPath>../../../bin/</OutputPath> | ||
477 | </Options> | ||
478 | </Configuration> | ||
479 | <Configuration name="Release"> | ||
480 | <Options> | ||
481 | <OutputPath>../../../bin/</OutputPath> | ||
482 | </Options> | ||
483 | </Configuration> | ||
484 | |||
485 | <ReferencePath>../../../bin/</ReferencePath> | ||
486 | <Reference name="System"/> | ||
487 | <Reference name="System.Xml"/> | ||
488 | <Reference name="OpenSim.Framework"/> | ||
489 | <Reference name="OpenSim.Framework.Data" /> | ||
490 | <Reference name="libsecondlife.dll"/> | ||
491 | |||
492 | <Files> | ||
493 | <Match pattern="*.cs" recurse="true"/> | ||
494 | </Files> | ||
495 | </Project> | ||
496 | |||
497 | <Project name="OpenSim.Framework.Communications.OGS1" path="OpenSim/Framework/Communications.OGS1" type="Library"> | ||
498 | <Configuration name="Debug"> | ||
499 | <Options> | ||
500 | <OutputPath>../../../bin/</OutputPath> | ||
501 | </Options> | ||
502 | </Configuration> | ||
503 | <Configuration name="Release"> | ||
504 | <Options> | ||
505 | <OutputPath>../../../bin/</OutputPath> | ||
506 | </Options> | ||
507 | </Configuration> | ||
508 | |||
509 | <ReferencePath>../../../bin/</ReferencePath> | ||
510 | <Reference name="System"/> | ||
511 | <Reference name="System.Xml"/> | ||
512 | <Reference name="System.Data"/> | ||
513 | <Reference name="System.Runtime.Remoting"/> | ||
514 | <Reference name="OpenSim.Framework"/> | ||
515 | <Reference name="OpenSim.Framework.Console"/> | ||
516 | <Reference name="OpenSim.Framework.Servers"/> | ||
517 | <Reference name="OpenSim.Framework.Communications" /> | ||
518 | <Reference name="OpenSim.Framework.Data" /> | ||
519 | <Reference name="libsecondlife.dll"/> | ||
520 | <Reference name="XMLRPC.dll"/> | ||
521 | |||
522 | <Files> | ||
523 | <Match pattern="*.cs" recurse="true"/> | ||
524 | </Files> | ||
525 | </Project> | ||
526 | |||
527 | <Project name="OpenSim.Region.LocalCommunications" path="OpenSim/Region/LocalCommunications" type="Library"> | ||
528 | <Configuration name="Debug"> | ||
529 | <Options> | ||
530 | <OutputPath>../../../bin/</OutputPath> | ||
531 | </Options> | ||
532 | </Configuration> | ||
533 | <Configuration name="Release"> | ||
534 | <Options> | ||
535 | <OutputPath>../../../bin/</OutputPath> | ||
536 | </Options> | ||
537 | </Configuration> | ||
538 | |||
539 | <ReferencePath>../../../bin/</ReferencePath> | ||
540 | <Reference name="System"/> | ||
541 | <Reference name="System.Xml"/> | ||
542 | <Reference name="OpenSim.Framework.Communications"/> | ||
543 | <Reference name="OpenSim.Framework.UserManagement" /> | ||
544 | <Reference name="OpenSim.Framework.Data" /> | ||
545 | <Reference name="libsecondlife.dll"/> | ||
546 | <Reference name="OpenSim.Framework"/> | ||
547 | |||
548 | <Files> | ||
549 | <Match pattern="*.cs" recurse="true"/> | ||
550 | </Files> | ||
551 | </Project> | ||
552 | |||
553 | <Project name="OpenSim.Region.ClientStack" path="OpenSim/Region/ClientStack" type="Library"> | ||
554 | <Configuration name="Debug"> | ||
555 | <Options> | ||
556 | <OutputPath>../../../bin/</OutputPath> | ||
557 | </Options> | ||
558 | </Configuration> | ||
559 | <Configuration name="Release"> | ||
560 | <Options> | ||
561 | <OutputPath>../../../bin/</OutputPath> | ||
562 | </Options> | ||
563 | </Configuration> | ||
564 | |||
565 | <ReferencePath>../../../bin/</ReferencePath> | ||
566 | <Reference name="System" localCopy="false"/> | ||
567 | <Reference name="System.Xml"/> | ||
568 | <Reference name="libsecondlife.dll"/> | ||
569 | <Reference name="Axiom.MathLib.dll"/> | ||
570 | <Reference name="Db4objects.Db4o.dll"/> | ||
571 | <Reference name="OpenSim.Region.Terrain.BasicTerrain"/> | ||
572 | <Reference name="OpenSim.Framework"/> | ||
573 | <Reference name="OpenSim.Framework.Console"/> | ||
574 | <Reference name="OpenSim.FrameworkGenericConfig.Xml"/> | ||
575 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
576 | <Reference name="OpenSim.Framework.Servers"/> | ||
577 | <Reference name="OpenSim.Region.Caches"/> | ||
578 | <Reference name="XMLRPC.dll"/> | ||
579 | |||
580 | <Files> | ||
581 | <Match pattern="*.cs" recurse="true"/> | ||
582 | </Files> | ||
583 | </Project> | ||
584 | |||
585 | |||
586 | |||
587 | <Project name="OpenSim.Region.Simulation" path="OpenSim/Region/Simulation" type="Library"> | ||
588 | <Configuration name="Debug"> | ||
589 | <Options> | ||
590 | <OutputPath>../../../bin/</OutputPath> | ||
591 | </Options> | ||
592 | </Configuration> | ||
593 | <Configuration name="Release"> | ||
594 | <Options> | ||
595 | <OutputPath>../../../bin/</OutputPath> | ||
596 | </Options> | ||
597 | </Configuration> | ||
598 | |||
599 | <ReferencePath>../../../bin/</ReferencePath> | ||
600 | <Reference name="System" localCopy="false"/> | ||
601 | <Reference name="System.Xml"/> | ||
602 | <Reference name="libsecondlife.dll"/> | ||
603 | <Reference name="Axiom.MathLib.dll"/> | ||
604 | <Reference name="Db4objects.Db4o.dll"/> | ||
605 | <Reference name="OpenSim.Region.Terrain.BasicTerrain"/> | ||
606 | <Reference name="OpenSim.Framework"/> | ||
607 | <Reference name="OpenSim.Framework.Console"/> | ||
608 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
609 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
610 | <Reference name="OpenSim.Framework.Servers"/> | ||
611 | <Reference name="OpenSim.Region.Caches"/> | ||
612 | <Reference name="XMLRPC.dll"/> | ||
613 | <Reference name="OpenSim.Framework.Communications"/> | ||
614 | |||
615 | <Files> | ||
616 | <Match pattern="*.cs" recurse="true"/> | ||
617 | </Files> | ||
618 | </Project> | ||
619 | |||
620 | <!-- OpenSim app --> | ||
621 | <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe"> | ||
622 | <Configuration name="Debug"> | ||
623 | <Options> | ||
624 | <OutputPath>../../../bin/</OutputPath> | ||
625 | </Options> | ||
626 | </Configuration> | ||
627 | <Configuration name="Release"> | ||
628 | <Options> | ||
629 | <OutputPath>../../../bin/</OutputPath> | ||
630 | </Options> | ||
631 | </Configuration> | ||
632 | |||
633 | <ReferencePath>../../../bin/</ReferencePath> | ||
634 | <Reference name="System" localCopy="false"/> | ||
635 | <Reference name="System.Xml"/> | ||
636 | <Reference name="libsecondlife.dll"/> | ||
637 | <Reference name="Axiom.MathLib.dll"/> | ||
638 | <Reference name="Db4objects.Db4o.dll"/> | ||
639 | <Reference name="OpenSim.Region.Terrain.BasicTerrain"/> | ||
640 | <Reference name="OpenSim.Framework"/> | ||
641 | <Reference name="OpenSim.Framework.Console"/> | ||
642 | <Reference name="OpenSim.Region.Physics.Manager"/> | ||
643 | <Reference name="OpenSim.Framework.Servers"/> | ||
644 | <Reference name="OpenSim.Region.Simulation"/> | ||
645 | <Reference name="OpenSim.Region.ClientStack"/> | ||
646 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
647 | <Reference name="OpenSim.Framework.Communications"/> | ||
648 | <Reference name="OpenSim.Framework.Communications.OGS1"/> | ||
649 | <Reference name="OpenSim.Region.Caches"/> | ||
650 | <Reference name="XMLRPC.dll"/> | ||
651 | <Reference name="OpenSim.Framework.UserManagement" /> | ||
652 | <Reference name="OpenSim.Region.LocalCommunications"/> | ||
653 | |||
654 | <Files> | ||
655 | <Match pattern="*.cs" recurse="true"/> | ||
656 | </Files> | ||
657 | </Project> | ||
658 | |||
659 | <!-- Scene Server API Example Apps --> | ||
660 | |||
661 | <Project name="SimpleApp" path="OpenSim/Region/Examples/SimpleApp" type="Exe"> | ||
662 | <Configuration name="Debug"> | ||
663 | <Options> | ||
664 | <OutputPath>../../../../bin/</OutputPath> | ||
665 | </Options> | ||
666 | </Configuration> | ||
667 | <Configuration name="Release"> | ||
668 | <Options> | ||
669 | <OutputPath>../../../../bin/</OutputPath> | ||
670 | </Options> | ||
671 | </Configuration> | ||
672 | |||
673 | <ReferencePath>../../../../bin/</ReferencePath> | ||
674 | |||
675 | <Reference name="libsecondlife.dll"/> | ||
676 | <Reference name="System" localCopy="false"/> | ||
677 | <Reference name="System.Data.dll"/> | ||
678 | <Reference name="System.Xml"/> | ||
679 | |||
680 | <Reference name="OpenSim.Framework.Console"/> | ||
681 | <Reference name="OpenSim.Framework"/> | ||
682 | <Reference name="XMLRPC.dll"/> | ||
683 | <Reference name="OpenSim.Region.GridInterfaces.Local"/> | ||
684 | <Reference name="OpenSim.Servers"/> | ||
685 | <Reference name="OpenSim.Framework.Communications"/> | ||
686 | <Reference name="OpenSim.Region.LocalCommunications"/> | ||
687 | <Reference name="OpenSim.Region.Caches"/> | ||
688 | <Reference name="OpenSim.Region.ClientStack"/> | ||
689 | <Reference name="OpenSim.Region.Simulation"/> | ||
690 | |||
691 | |||
692 | <Files> | ||
693 | <Match pattern="*.cs" recurse="true"/> | ||
694 | </Files> | ||
695 | </Project> | ||
696 | |||
697 | </Solution> | ||
698 | |||
699 | |||
700 | <Solution name="OpenGridServices" activeConfig="Debug" path="./"> | ||
701 | <Configuration name="Debug"> | ||
702 | <Options> | ||
703 | <CompilerDefines>TRACE;DEBUG</CompilerDefines> | ||
704 | <OptimizeCode>false</OptimizeCode> | ||
705 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
706 | <AllowUnsafe>false</AllowUnsafe> | ||
707 | <WarningLevel>4</WarningLevel> | ||
708 | <WarningsAsErrors>false</WarningsAsErrors> | ||
709 | <SuppressWarnings></SuppressWarnings> | ||
710 | <OutputPath>bin</OutputPath> | ||
711 | <DebugInformation>true</DebugInformation> | ||
712 | <IncrementalBuild>true</IncrementalBuild> | ||
713 | <NoStdLib>false</NoStdLib> | ||
714 | </Options> | ||
715 | </Configuration> | ||
716 | <Configuration name="Release"> | ||
717 | <Options> | ||
718 | <CompilerDefines>TRACE</CompilerDefines> | ||
719 | <OptimizeCode>true</OptimizeCode> | ||
720 | <CheckUnderflowOverflow>false</CheckUnderflowOverflow> | ||
721 | <AllowUnsafe>false</AllowUnsafe> | ||
722 | <WarningLevel>4</WarningLevel> | ||
723 | <WarningsAsErrors>false</WarningsAsErrors> | ||
724 | <SuppressWarnings></SuppressWarnings> | ||
725 | <OutputPath>bin</OutputPath> | ||
726 | <DebugInformation>false</DebugInformation> | ||
727 | <IncrementalBuild>true</IncrementalBuild> | ||
728 | <NoStdLib>false</NoStdLib> | ||
729 | </Options> | ||
730 | </Configuration> | ||
731 | |||
732 | |||
733 | <!-- OpenGrid Data Services --> | ||
734 | <Project name="OpenSim.Framework.Data" path="OpenSim/Framework/Data" type="Library"> | ||
735 | <Configuration name="Debug"> | ||
736 | <Options> | ||
737 | <OutputPath>../../../bin/</OutputPath> | ||
738 | </Options> | ||
739 | </Configuration> | ||
740 | <Configuration name="Release"> | ||
741 | <Options> | ||
742 | <OutputPath>../../../bin/</OutputPath> | ||
743 | </Options> | ||
744 | </Configuration> | ||
745 | |||
746 | <ReferencePath>../../../bin/</ReferencePath> | ||
747 | <Reference name="System" localCopy="false"/> | ||
748 | <Reference name="System.Xml"/> | ||
749 | <Reference name="System.Data"/> | ||
750 | <Reference name="libsecondlife.dll"/> | ||
751 | <Files> | ||
752 | <Match pattern="*.cs" recurse="true"/> | ||
753 | </Files> | ||
754 | </Project> | ||
755 | |||
756 | <Project name="OpenSim.Framework.Data.MySQL" path="OpenSim/Framework/Data.MySQL" type="Library"> | ||
757 | <Configuration name="Debug"> | ||
758 | <Options> | ||
759 | <OutputPath>../../../bin/</OutputPath> | ||
760 | </Options> | ||
761 | </Configuration> | ||
762 | <Configuration name="Release"> | ||
763 | <Options> | ||
764 | <OutputPath>../../../bin/</OutputPath> | ||
765 | </Options> | ||
766 | </Configuration> | ||
767 | |||
768 | <ReferencePath>../../../bin/</ReferencePath> | ||
769 | <Reference name="System" localCopy="false"/> | ||
770 | <Reference name="System.Xml"/> | ||
771 | <Reference name="System.Data"/> | ||
772 | <Reference name="OpenSim.Framework.Data"/> | ||
773 | <Reference name="libsecondlife.dll"/> | ||
774 | <Reference name="MySql.Data.dll"/> | ||
775 | <Files> | ||
776 | <Match pattern="*.cs" recurse="true"/> | ||
777 | </Files> | ||
778 | </Project> | ||
779 | |||
780 | <Project name="OpenSim.Framework.Data.DB4o" path="OpenSim/Framework/Data.DB4o" type="Library"> | ||
781 | <Configuration name="Debug"> | ||
782 | <Options> | ||
783 | <OutputPath>../../../bin/</OutputPath> | ||
784 | </Options> | ||
785 | </Configuration> | ||
786 | <Configuration name="Release"> | ||
787 | <Options> | ||
788 | <OutputPath>../../../bin/</OutputPath> | ||
789 | </Options> | ||
790 | </Configuration> | ||
791 | |||
792 | <ReferencePath>../../../bin/</ReferencePath> | ||
793 | <Reference name="System" localCopy="false"/> | ||
794 | <Reference name="System.Xml"/> | ||
795 | <Reference name="System.Data"/> | ||
796 | <Reference name="OpenSim.Framework.Data"/> | ||
797 | <Reference name="libsecondlife.dll"/> | ||
798 | <Reference name="Db4objects.Db4o.dll"/> | ||
799 | <Files> | ||
800 | <Match pattern="*.cs" recurse="true"/> | ||
801 | </Files> | ||
802 | </Project> | ||
803 | |||
804 | <Project name="OpenSim.Framework.Data.MSSQL" path="OpenSim/Framework/Data.MSSQL" type="Library"> | ||
805 | <Configuration name="Debug"> | ||
806 | <Options> | ||
807 | <OutputPath>../../../bin/</OutputPath> | ||
808 | </Options> | ||
809 | </Configuration> | ||
810 | <Configuration name="Release"> | ||
811 | <Options> | ||
812 | <OutputPath>../../../bin/</OutputPath> | ||
813 | </Options> | ||
814 | </Configuration> | ||
815 | |||
816 | <ReferencePath>../../../bin/</ReferencePath> | ||
817 | <Reference name="System" localCopy="false"/> | ||
818 | <Reference name="System.Xml"/> | ||
819 | <Reference name="System.Data"/> | ||
820 | <Reference name="OpenSim.Framework.Data"/> | ||
821 | <Reference name="libsecondlife.dll"/> | ||
822 | <Files> | ||
823 | <Match pattern="*.cs" recurse="true"/> | ||
824 | </Files> | ||
825 | </Project> | ||
826 | |||
827 | <Project name="OpenSim.Framework.Data.SQLite" path="OpenSim/Framework/Data.SQLite" type="Library"> | ||
828 | <Configuration name="Debug"> | ||
829 | <Options> | ||
830 | <OutputPath>../../../bin/</OutputPath> | ||
831 | </Options> | ||
832 | </Configuration> | ||
833 | <Configuration name="Release"> | ||
834 | <Options> | ||
835 | <OutputPath>../../../bin/</OutputPath> | ||
836 | </Options> | ||
837 | </Configuration> | ||
838 | |||
839 | <ReferencePath>../../../bin/</ReferencePath> | ||
840 | <Reference name="System" localCopy="false"/> | ||
841 | <Reference name="System.Xml"/> | ||
842 | <Reference name="System.Data"/> | ||
843 | <Reference name="System.Data.SQLite.dll"/> | ||
844 | <Reference name="OpenSim.Framework.Data"/> | ||
845 | <Reference name="libsecondlife.dll"/> | ||
846 | <Files> | ||
847 | <Match pattern="*.cs" recurse="true"/> | ||
848 | </Files> | ||
849 | </Project> | ||
850 | |||
851 | <!-- OGS projects --> | ||
852 | |||
853 | <Project name="OpenSim.Grid.Framework.Manager" path="OpenSim/Grid/Framework.Manager" type="Library"> | ||
854 | <Configuration name="Debug"> | ||
855 | <Options> | ||
856 | <OutputPath>../../../bin/</OutputPath> | ||
857 | </Options> | ||
858 | </Configuration> | ||
859 | <Configuration name="Release"> | ||
860 | <Options> | ||
861 | <OutputPath>../../../bin/</OutputPath> | ||
862 | </Options> | ||
863 | </Configuration> | ||
864 | |||
865 | <ReferencePath>../../../bin/</ReferencePath> | ||
866 | <Reference name="System" localCopy="false"/> | ||
867 | <Reference name="OpenSim.Framework"/> | ||
868 | <Reference name="OpenSim.Framework.Servers"/> | ||
869 | <Reference name="libsecondlife.dll"/> | ||
870 | <Reference name="XMLRPC.dll"/> | ||
871 | |||
872 | |||
873 | <Files> | ||
874 | <Match pattern="*.cs" recurse="true"/> | ||
875 | </Files> | ||
876 | </Project> | ||
877 | |||
878 | <Project name="OpenSim.Grid.GridServer" path="OpenSim/Grid/GridServer" type="Exe"> | ||
879 | <Configuration name="Debug"> | ||
880 | <Options> | ||
881 | <OutputPath>../../../bin/</OutputPath> | ||
882 | </Options> | ||
883 | </Configuration> | ||
884 | <Configuration name="Release"> | ||
885 | <Options> | ||
886 | <OutputPath>../../../bin/</OutputPath> | ||
887 | </Options> | ||
888 | </Configuration> | ||
889 | |||
890 | <ReferencePath>../../../bin/</ReferencePath> | ||
891 | <Reference name="System" localCopy="false"/> | ||
892 | <Reference name="System.Data" localCopy="false"/> | ||
893 | <Reference name="System.Xml" localCopy="false"/> | ||
894 | <Reference name="OpenSim.Framework"/> | ||
895 | <Reference name="OpenSim.Framework.Console"/> | ||
896 | <Reference name="OpenSim.Framework.Servers"/> | ||
897 | <Reference name="OpenSim.Framework.Data"/> | ||
898 | <Reference name="OpenSim.Grid.Framework.Manager"/> | ||
899 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
900 | <Reference name="libsecondlife.dll"/> | ||
901 | <Reference name="Db4objects.Db4o.dll"/> | ||
902 | <Reference name="XMLRPC.dll"/> | ||
903 | |||
904 | <Files> | ||
905 | <Match pattern="*.cs" recurse="true"/> | ||
906 | </Files> | ||
907 | </Project> | ||
908 | |||
909 | <Project name="OpenSim.Grid.AssetServer" path="OpenSim/Grid/AssetServer" type="Exe"> | ||
910 | <Configuration name="Debug"> | ||
911 | <Options> | ||
912 | <OutputPath>../../../bin/</OutputPath> | ||
913 | </Options> | ||
914 | </Configuration> | ||
915 | <Configuration name="Release"> | ||
916 | <Options> | ||
917 | <OutputPath>../../../bin/</OutputPath> | ||
918 | </Options> | ||
919 | </Configuration> | ||
920 | |||
921 | <ReferencePath>../../../bin/</ReferencePath> | ||
922 | <Reference name="System" localCopy="false"/> | ||
923 | <Reference name="System.Data" localCopy="false"/> | ||
924 | <Reference name="System.Xml" localCopy="false"/> | ||
925 | <Reference name="OpenSim.Framework"/> | ||
926 | <Reference name="OpenSim.Framework.Console"/> | ||
927 | <Reference name="OpenSim.Framework.Servers"/> | ||
928 | <Reference name="libsecondlife.dll"/> | ||
929 | <Reference name="Db4objects.Db4o.dll"/> | ||
930 | <Reference name="XMLRPC.dll"/> | ||
931 | |||
932 | <Files> | ||
933 | <Match pattern="*.cs" recurse="true"/> | ||
934 | </Files> | ||
935 | </Project> | ||
936 | |||
937 | <Project name="OpenSim.Framework.UserManagement" path="OpenSim/Framework/UserManager" type="Library"> | ||
938 | <Configuration name="Debug"> | ||
939 | <Options> | ||
940 | <OutputPath>../../../bin/</OutputPath> | ||
941 | </Options> | ||
942 | </Configuration> | ||
943 | <Configuration name="Release"> | ||
944 | <Options> | ||
945 | <OutputPath>../../../bin/</OutputPath> | ||
946 | </Options> | ||
947 | </Configuration> | ||
948 | |||
949 | <ReferencePath>../../../bin/</ReferencePath> | ||
950 | <Reference name="System" localCopy="false"/> | ||
951 | <Reference name="System.Data" localCopy="false"/> | ||
952 | <Reference name="System.Xml" localCopy="false"/> | ||
953 | <Reference name="OpenSim.Framework"/> | ||
954 | <Reference name="OpenSim.Framework.Console"/> | ||
955 | <Reference name="OpenSim.Framework.Data"/> | ||
956 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
957 | <Reference name="OpenSim.Framework.Servers"/> | ||
958 | <Reference name="libsecondlife.dll"/> | ||
959 | <Reference name="Db4objects.Db4o.dll"/> | ||
960 | <Reference name="XMLRPC.dll"/> | ||
961 | |||
962 | <Files> | ||
963 | <Match pattern="*.cs" recurse="true"/> | ||
964 | </Files> | ||
965 | </Project> | ||
966 | |||
967 | <Project name="OpenSim.Grid.UserServer" path="OpenSim/Grid/UserServer" type="Exe"> | ||
968 | <Configuration name="Debug"> | ||
969 | <Options> | ||
970 | <OutputPath>../../../bin/</OutputPath> | ||
971 | </Options> | ||
972 | </Configuration> | ||
973 | <Configuration name="Release"> | ||
974 | <Options> | ||
975 | <OutputPath>../../../bin/</OutputPath> | ||
976 | </Options> | ||
977 | </Configuration> | ||
978 | |||
979 | <ReferencePath>../../../bin/</ReferencePath> | ||
980 | <Reference name="System" localCopy="false"/> | ||
981 | <Reference name="System.Data" localCopy="false"/> | ||
982 | <Reference name="System.Xml" localCopy="false"/> | ||
983 | <Reference name="OpenSim.Framework"/> | ||
984 | <Reference name="OpenSim.Framework.Console"/> | ||
985 | <Reference name="OpenSim.Framework.Data"/> | ||
986 | <Reference name="OpenSim.Framework.GenericConfig.Xml"/> | ||
987 | <Reference name="OpenSim.Framework.Servers"/> | ||
988 | <Reference name="OpenSim.Framework.UserManager" /> | ||
989 | <Reference name="libsecondlife.dll"/> | ||
990 | <Reference name="Db4objects.Db4o.dll"/> | ||
991 | <Reference name="XMLRPC.dll"/> | ||
992 | |||
993 | <Files> | ||
994 | <Match pattern="*.cs" recurse="true"/> | ||
995 | </Files> | ||
996 | </Project> | ||
997 | |||
998 | <Project name="OpenSim.Grid.GridServer.Config" path="OpenSim/Grid/GridServer.Config" type="Library"> | ||
999 | <Configuration name="Debug"> | ||
1000 | <Options> | ||
1001 | <OutputPath>../../../bin/</OutputPath> | ||
1002 | </Options> | ||
1003 | </Configuration> | ||
1004 | <Configuration name="Release"> | ||
1005 | <Options> | ||
1006 | <OutputPath>../../../bin/</OutputPath> | ||
1007 | </Options> | ||
1008 | </Configuration> | ||
1009 | |||
1010 | <ReferencePath>../../../bin/</ReferencePath> | ||
1011 | <Reference name="System" localCopy="false"/> | ||
1012 | <Reference name="System.Data.dll"/> | ||
1013 | <Reference name="System.Xml"/> | ||
1014 | <Reference name="libsecondlife.dll"/> | ||
1015 | <Reference name="Db4objects.Db4o.dll"/> | ||
1016 | <Reference name="OpenSim.Framework"/> | ||
1017 | <Reference name="OpenSim.Framework.Console"/> | ||
1018 | <Files> | ||
1019 | <Match pattern="*.cs" recurse="true"/> | ||
1020 | </Files> | ||
1021 | </Project> | ||
1022 | |||
1023 | <Project name="OpenSim.Grid.UserServer.Config" path="OpenSim/Grid/UserServer.Config" type="Library"> | ||
1024 | <Configuration name="Debug"> | ||
1025 | <Options> | ||
1026 | <OutputPath>../../../bin/</OutputPath> | ||
1027 | </Options> | ||
1028 | </Configuration> | ||
1029 | <Configuration name="Release"> | ||
1030 | <Options> | ||
1031 | <OutputPath>../../../bin/</OutputPath> | ||
1032 | </Options> | ||
1033 | </Configuration> | ||
1034 | |||
1035 | <ReferencePath>../../../bin/</ReferencePath> | ||
1036 | <Reference name="System" localCopy="false"/> | ||
1037 | <Reference name="System.Data.dll"/> | ||
1038 | <Reference name="System.Xml"/> | ||
1039 | <Reference name="libsecondlife.dll"/> | ||
1040 | <Reference name="Db4objects.Db4o.dll"/> | ||
1041 | <Reference name="OpenSim.Framework"/> | ||
1042 | <Reference name="OpenSim.Framework.Console"/> | ||
1043 | <Files> | ||
1044 | <Match pattern="*.cs" recurse="true"/> | ||
1045 | </Files> | ||
1046 | </Project> | ||
1047 | |||
1048 | </Solution> | ||
1049 | |||
1050 | |||
1051 | <!-- Prebuild tool --> | ||
1052 | <Solution name="Prebuild" path="Prebuild/" > | ||
1053 | <Configuration name="Debug"> | ||
1054 | <Options> | ||
1055 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
1056 | <OptimizeCode>false</OptimizeCode> | ||
1057 | <OutputPath>bin/Debug</OutputPath> | ||
1058 | <DebugInformation>true</DebugInformation> | ||
1059 | <SuppressWarnings>1595</SuppressWarnings> | ||
1060 | </Options> | ||
1061 | </Configuration> | ||
1062 | <Configuration name="Release"> | ||
1063 | <Options> | ||
1064 | <CompilerDefines>TRACE</CompilerDefines> | ||
1065 | <OutputPath>bin/Release</OutputPath> | ||
1066 | <OptimizeCode>true</OptimizeCode> | ||
1067 | <DebugInformation>false</DebugInformation> | ||
1068 | <SuppressWarnings>1595</SuppressWarnings> | ||
1069 | </Options> | ||
1070 | </Configuration> | ||
1071 | <Project name="Prebuild" path="src/" language="C#" assemblyName="Prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild"> | ||
1072 | <Configuration name="Debug"> | ||
1073 | <Options> | ||
1074 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
1075 | <OptimizeCode>false</OptimizeCode> | ||
1076 | <OutputPath>..\..\bin\</OutputPath> | ||
1077 | <DebugInformation>true</DebugInformation> | ||
1078 | <KeyFile>Prebuild.snk</KeyFile> | ||
1079 | <SuppressWarnings>1595</SuppressWarnings> | ||
1080 | </Options> | ||
1081 | </Configuration> | ||
1082 | <Configuration name="Release"> | ||
1083 | <Options> | ||
1084 | <CompilerDefines>TRACE</CompilerDefines> | ||
1085 | <OutputPath>..\..\bin\</OutputPath> | ||
1086 | <OptimizeCode>true</OptimizeCode> | ||
1087 | <DebugInformation>false</DebugInformation> | ||
1088 | <KeyFile>Prebuild.snk</KeyFile> | ||
1089 | <SuppressWarnings>1595</SuppressWarnings> | ||
1090 | </Options> | ||
1091 | </Configuration> | ||
1092 | <ReferencePath>../../bin/</ReferencePath> | ||
1093 | <Reference name="System.EnterpriseServices" /> | ||
1094 | <Reference name="System.Xml" /> | ||
1095 | <Reference name="System" /> | ||
1096 | <Files> | ||
1097 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | ||
1098 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | ||
1099 | <Match pattern="*.cs" recurse="true"/> | ||
1100 | </Files> | ||
1101 | </Project> | ||
1102 | </Solution> | ||
1103 | </Prebuild> | ||
1104 | |||
1105 | |||