aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--prebuild.xml916
1 files changed, 0 insertions, 916 deletions
diff --git a/prebuild.xml b/prebuild.xml
deleted file mode 100644
index d08daab..0000000
--- a/prebuild.xml
+++ /dev/null
@@ -1,916 +0,0 @@
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 <!-- XML-RPC -->
36 <Project name="XMLRPC" path="Common/XmlRpcCS" type="Library">
37 <Configuration name="Debug">
38 <Options>
39 <OutputPath>../../bin/</OutputPath>
40 </Options>
41 </Configuration>
42 <Configuration name="Release">
43 <Options>
44 <OutputPath>../../bin/</OutputPath>
45 </Options>
46 </Configuration>
47
48 <ReferencePath>../../bin/</ReferencePath>
49 <Reference name="System"/>
50 <Reference name="System.Xml"/>
51
52 <Files>
53 <Match pattern="*.cs" recurse="true"/>
54 </Files>
55 </Project>
56
57 <!-- Core OpenSim Projects -->
58
59 <Project name="OpenSim.Framework" path="Common/OpenSim.Framework" type="Library">
60 <Configuration name="Debug">
61 <Options>
62 <OutputPath>../../bin/</OutputPath>
63 </Options>
64 </Configuration>
65 <Configuration name="Release">
66 <Options>
67 <OutputPath>../../bin/</OutputPath>
68 </Options>
69 </Configuration>
70
71 <ReferencePath>../../bin/</ReferencePath>
72 <Reference name="System"/>
73 <Reference name="System.Xml"/>
74 <Reference name="libsecondlife.dll"/>
75 <Reference name="Db4objects.Db4o.dll"/>
76 <Reference name="XMLRPC"/>
77 <Files>
78 <Match pattern="*.cs" recurse="true"/>
79 </Files>
80 </Project>
81
82 <Project name="OpenSim.Framework.Console" path="Common/OpenSim.Framework.Console" type="Library">
83 <Configuration name="Debug">
84 <Options>
85 <OutputPath>../../bin/</OutputPath>
86 </Options>
87 </Configuration>
88 <Configuration name="Release">
89 <Options>
90 <OutputPath>../../bin/</OutputPath>
91 </Options>
92 </Configuration>
93
94 <ReferencePath>../../bin/</ReferencePath>
95 <Reference name="System" localCopy="false"/>
96 <Files>
97 <Match pattern="*.cs" recurse="true"/>
98 </Files>
99 </Project>
100
101 <Project name="OpenSim.Servers" path="Common/OpenSim.Servers" type="Library">
102 <Configuration name="Debug">
103 <Options>
104 <OutputPath>../../bin/</OutputPath>
105 </Options>
106 </Configuration>
107 <Configuration name="Release">
108 <Options>
109 <OutputPath>../../bin/</OutputPath>
110 </Options>
111 </Configuration>
112
113 <ReferencePath>../../bin/</ReferencePath>
114 <Reference name="System"/>
115 <Reference name="System.Xml"/>
116 <Reference name="OpenSim.Framework"/>
117 <Reference name="OpenSim.Framework.Console"/>
118 <Reference name="libsecondlife.dll"/>
119 <Reference name="XMLRPC"/>
120
121 <Files>
122 <Match pattern="*.cs" recurse="true"/>
123 </Files>
124 </Project>
125
126 <!-- Storage Plug-ins -->
127 <Project name="OpenSim.Storage.LocalStorageDb4o" path="OpenSim/OpenSim.Storage/LocalStorageDb4o" type="Library">
128 <Configuration name="Debug">
129 <Options>
130 <OutputPath>../../../bin/</OutputPath>
131 </Options>
132 </Configuration>
133 <Configuration name="Release">
134 <Options>
135 <OutputPath>../../../bin/</OutputPath>
136 </Options>
137 </Configuration>
138
139 <ReferencePath>../../../bin/</ReferencePath>
140 <Reference name="System" localCopy="false"/>
141 <Reference name="System.Xml"/>
142 <Reference name="Db4objects.Db4o.dll"/>
143 <Reference name="libsecondlife.dll"/>
144 <Reference name="OpenSim.Framework"/>
145 <Reference name="OpenSim.Framework.Console"/>
146 <Files>
147 <Match pattern="*.cs" recurse="true"/>
148 </Files>
149 </Project>
150
151 <Project name="OpenSim.Storage.LocalStorageSQLite" path="OpenSim/OpenSim.Storage/LocalStorageSQLite" type="Library">
152 <Configuration name="Debug">
153 <Options>
154 <OutputPath>../../../bin/</OutputPath>
155 </Options>
156 </Configuration>
157 <Configuration name="Release">
158 <Options>
159 <OutputPath>../../../bin/</OutputPath>
160 </Options>
161 </Configuration>
162
163 <ReferencePath>../../../bin/</ReferencePath>
164 <Reference name="System" localCopy="false"/>
165 <Reference name="System.Xml"/>
166 <Reference name="System.Data"/>
167 <Reference name="System.Data.SQLite.dll"/>
168 <Reference name="libsecondlife.dll"/>
169 <Reference name="OpenSim.Framework"/>
170 <Reference name="OpenSim.Framework.Console"/>
171 <Files>
172 <Match pattern="*.cs" recurse="true"/>
173 </Files>
174 </Project>
175
176 <Project name="OpenSim.Storage.LocalStorageBerkeleyDB" path="OpenSim/OpenSim.Storage/LocalStorageBerkeleyDB" type="Library">
177 <Configuration name="Debug">
178 <Options>
179 <OutputPath>../../../bin/</OutputPath>
180 </Options>
181 </Configuration>
182 <Configuration name="Release">
183 <Options>
184 <OutputPath>../../../bin/</OutputPath>
185 </Options>
186 </Configuration>
187
188 <ReferencePath>../../../bin/</ReferencePath>
189 <Reference name="System" localCopy="false"/>
190 <Reference name="System.Xml"/>
191 <Reference name="System.Data"/>
192 <Reference name="Kds.Serialization.dll"/>
193 <Reference name="libdb_dotNET43.dll"/>
194 <Reference name="libsecondlife.dll"/>
195 <Reference name="OpenSim.Framework"/>
196 <Reference name="OpenSim.Framework.Console"/>
197 <Files>
198 <Match pattern="*.cs" recurse="true"/>
199 </Files>
200 </Project>
201
202 <!-- Grid Server Plug-ins -->
203 <Project name="OpenSim.GridInterfaces.Local" path="OpenSim/OpenSim.GridInterfaces/Local" type="Library">
204 <Configuration name="Debug">
205 <Options>
206 <OutputPath>../../../bin/</OutputPath>
207 </Options>
208 </Configuration>
209 <Configuration name="Release">
210 <Options>
211 <OutputPath>../../../bin/</OutputPath>
212 </Options>
213 </Configuration>
214
215 <ReferencePath>../../../bin/</ReferencePath>
216 <Reference name="System" localCopy="false"/>
217 <Reference name="System.Xml"/>
218 <Reference name="Db4objects.Db4o.dll"/>
219 <Reference name="libsecondlife.dll"/>
220 <Reference name="OpenSim.Framework"/>
221 <Reference name="OpenSim.Framework.Console"/>
222 <Files>
223 <Match pattern="*.cs" recurse="true"/>
224 </Files>
225 </Project>
226
227 <Project name="OpenSim.GridInterfaces.Remote" path="OpenSim/OpenSim.GridInterfaces/Remote" type="Library">
228 <Configuration name="Debug">
229 <Options>
230 <OutputPath>../../../bin/</OutputPath>
231 </Options>
232 </Configuration>
233 <Configuration name="Release">
234 <Options>
235 <OutputPath>../../../bin/</OutputPath>
236 </Options>
237 </Configuration>
238
239 <ReferencePath>../../../bin/</ReferencePath>
240 <Reference name="System" localCopy="false"/>
241 <Reference name="System.Xml"/>
242 <Reference name="libsecondlife.dll"/>
243 <Reference name="OpenSim.Framework"/>
244 <Reference name="OpenSim.Framework.Console"/>
245 <Reference name="XMLRPC"/>
246 <Files>
247 <Match pattern="*.cs" recurse="true"/>
248 </Files>
249 </Project>
250
251
252 <Project name="OpenSim.Physics.Manager" path="OpenSim/OpenSim.Physics/Manager" type="Library">
253 <Configuration name="Debug">
254 <Options>
255 <OutputPath>../../../bin/</OutputPath>
256 </Options>
257 </Configuration>
258 <Configuration name="Release">
259 <Options>
260 <OutputPath>../../../bin/</OutputPath>
261 </Options>
262 </Configuration>
263
264 <ReferencePath>../../../bin/</ReferencePath>
265 <Reference name="System" localCopy="false"/>
266 <Reference name="System.Xml" localCopy="false" />
267 <Reference name="Axiom.MathLib.dll" localCopy="false"/>
268 <Reference name="OpenSim.Framework" localCopy="false"/>
269 <Reference name="OpenSim.Framework.Console" localCopy="false"/>
270 <Files>
271 <Match pattern="*.cs" recurse="false"/>
272 </Files>
273 </Project>
274
275
276 <!-- Physics Plug-ins -->
277 <Project name="OpenSim.Physics.BasicPhysicsPlugin" path="OpenSim/OpenSim.Physics/BasicPhysicsPlugin" type="Library">
278 <Configuration name="Debug">
279 <Options>
280 <OutputPath>../../../bin/Physics/</OutputPath>
281 </Options>
282 </Configuration>
283 <Configuration name="Release">
284 <Options>
285 <OutputPath>../../../bin/Physics/</OutputPath>
286 </Options>
287 </Configuration>
288
289 <ReferencePath>../../../bin/</ReferencePath>
290 <Reference name="System" localCopy="false"/>
291 <Reference name="Axiom.MathLib.dll" localCopy="false"/>
292 <Reference name="OpenSim.Physics.Manager" localCopy="false"/>
293 <Files>
294 <Match pattern="*.cs" recurse="true"/>
295 </Files>
296 </Project>
297
298 <Project name="OpenSim.Physics.PhysXPlugin" path="OpenSim/OpenSim.Physics/PhysXPlugin" type="Library">
299 <Configuration name="Debug">
300 <Options>
301 <OutputPath>../../../bin/Physics/</OutputPath>
302 </Options>
303 </Configuration>
304 <Configuration name="Release">
305 <Options>
306 <OutputPath>../../../bin/Physics/</OutputPath>
307 </Options>
308 </Configuration>
309
310 <ReferencePath>../../../bin/</ReferencePath>
311 <Reference name="System" localCopy="false"/>
312 <Reference name="Axiom.MathLib.dll" localCopy="false"/>
313 <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/>
314 <Reference name="OpenSim.Physics.Manager" localCopy="false"/>
315 <Files>
316 <Match pattern="*.cs" recurse="true"/>
317 </Files>
318 </Project>
319
320 <Project name="OpenSim.Physics.OdePlugin" path="OpenSim/OpenSim.Physics/OdePlugin" type="Library">
321 <Configuration name="Debug">
322 <Options>
323 <OutputPath>../../../bin/Physics/</OutputPath>
324 </Options>
325 </Configuration>
326 <Configuration name="Release">
327 <Options>
328 <OutputPath>../../../bin/Physics/</OutputPath>
329 </Options>
330 </Configuration>
331
332 <ReferencePath>../../../bin/</ReferencePath>
333 <Reference name="System" localCopy="false"/>
334 <Reference name="Axiom.MathLib.dll" localCopy="false"/>
335 <Reference name="OpenSim.Physics.Manager" localCopy="false"/>
336 <Reference name="Ode.NET.dll" localCopy="false" />
337
338 <Files>
339 <Match pattern="*.cs" recurse="true"/>
340 </Files>
341 </Project>
342
343 <!-- Xml Config Dll -->
344 <Project name="OpenSim.GenericConfig.Xml" path="Common/OpenSim.GenericConfig/Xml" type="Library">
345 <Configuration name="Debug">
346 <Options>
347 <OutputPath>../../../bin/</OutputPath>
348 </Options>
349 </Configuration>
350 <Configuration name="Release">
351 <Options>
352 <OutputPath>../../../bin/</OutputPath>
353 </Options>
354 </Configuration>
355
356 <ReferencePath>../../../bin/</ReferencePath>
357 <Reference name="System"/>
358 <Reference name="System.Xml"/>
359 <Reference name="OpenSim.Framework"/>
360
361 <Files>
362 <Match pattern="*.cs" recurse="true"/>
363 </Files>
364 </Project>
365
366 <!-- Basic embedded JVM -->
367 <Project name="OpenSim.Scripting.EmbeddedJVM" path="OpenSim/OpenSim.Scripting/EmbeddedJVM" type="Library">
368 <Configuration name="Debug">
369 <Options>
370 <OutputPath>../../../bin/ScriptEngines/</OutputPath>
371 </Options>
372 </Configuration>
373 <Configuration name="Release">
374 <Options>
375 <OutputPath>../../../bin/ScriptEngines/</OutputPath>
376 </Options>
377 </Configuration>
378
379 <ReferencePath>../../../bin/</ReferencePath>
380 <Reference name="System"/>
381 <Reference name="System.Xml"/>
382 <Reference name="OpenSim.Framework"/>
383
384 <Files>
385 <Match pattern="*.cs" recurse="true"/>
386 </Files>
387 </Project>
388
389
390 <!-- Terrain engine -->
391 <Project name="OpenSim.Terrain.BasicTerrain" path="OpenSim/OpenSim.Terrain.BasicTerrain" type="Library">
392 <Configuration name="Debug">
393 <Options>
394 <OutputPath>../../bin/</OutputPath>
395 </Options>
396 </Configuration>
397 <Configuration name="Release">
398 <Options>
399 <OutputPath>../../bin/</OutputPath>
400 </Options>
401 </Configuration>
402
403 <ReferencePath>../../bin/</ReferencePath>
404 <Reference name="System"/>
405 <Reference name="System.Drawing"/>
406 <Reference name="System.Data"/>
407 <Reference name="System.Xml"/>
408 <Reference name="libTerrain-BSD.dll"/>
409
410 <Files>
411 <Match pattern="*.cs" recurse="true"/>
412 </Files>
413 </Project>
414
415 <Project name="OpenSim.RegionServer" path="OpenSim/OpenSim.RegionServer" type="Library">
416 <Configuration name="Debug">
417 <Options>
418 <OutputPath>../../bin/</OutputPath>
419 </Options>
420 </Configuration>
421 <Configuration name="Release">
422 <Options>
423 <OutputPath>../../bin/</OutputPath>
424 </Options>
425 </Configuration>
426
427 <ReferencePath>../../bin/</ReferencePath>
428 <Reference name="System" localCopy="false"/>
429 <Reference name="System.Xml"/>
430 <Reference name="libsecondlife.dll"/>
431 <Reference name="Axiom.MathLib.dll"/>
432 <Reference name="Db4objects.Db4o.dll"/>
433 <Reference name="OpenSim.Terrain.BasicTerrain"/>
434 <Reference name="OpenSim.Framework"/>
435 <Reference name="OpenSim.Framework.Console"/>
436 <Reference name="OpenSim.GenericConfig.Xml"/>
437 <Reference name="OpenSim.Physics.Manager"/>
438 <Reference name="OpenSim.Servers"/>
439 <Reference name="XMLRPC"/>
440
441 <Files>
442 <Match pattern="*.cs" recurse="true"/>
443 </Files>
444 </Project>
445
446 <!-- OpenSim app -->
447 <Project name="OpenSim" path="OpenSim/OpenSim" type="Exe">
448 <Configuration name="Debug">
449 <Options>
450 <OutputPath>../../bin/</OutputPath>
451 </Options>
452 </Configuration>
453 <Configuration name="Release">
454 <Options>
455 <OutputPath>../../bin/</OutputPath>
456 </Options>
457 </Configuration>
458
459 <ReferencePath>../../bin/</ReferencePath>
460 <Reference name="System" localCopy="false"/>
461 <Reference name="System.Xml"/>
462 <Reference name="libsecondlife.dll"/>
463 <Reference name="Axiom.MathLib.dll"/>
464 <Reference name="Db4objects.Db4o.dll"/>
465 <Reference name="OpenSim.Terrain.BasicTerrain"/>
466 <Reference name="OpenSim.Framework"/>
467 <Reference name="OpenSim.Framework.Console"/>
468 <Reference name="OpenSim.Physics.Manager"/>
469 <Reference name="OpenSim.Servers"/>
470 <Reference name="OpenSim.RegionServer"/>
471 <Reference name="OpenSim.GenericConfig.Xml"/>
472 <Reference name="XMLRPC"/>
473
474 <Files>
475 <Match pattern="*.cs" recurse="true"/>
476 </Files>
477 </Project>
478
479</Solution>
480
481
482<Solution name="OpenGridServices" activeConfig="Debug" path="./">
483 <Configuration name="Debug">
484 <Options>
485 <CompilerDefines>TRACE;DEBUG</CompilerDefines>
486 <OptimizeCode>false</OptimizeCode>
487 <CheckUnderflowOverflow>false</CheckUnderflowOverflow>
488 <AllowUnsafe>false</AllowUnsafe>
489 <WarningLevel>4</WarningLevel>
490 <WarningsAsErrors>false</WarningsAsErrors>
491 <SuppressWarnings></SuppressWarnings>
492 <OutputPath>bin</OutputPath>
493 <DebugInformation>true</DebugInformation>
494 <IncrementalBuild>true</IncrementalBuild>
495 <NoStdLib>false</NoStdLib>
496 </Options>
497 </Configuration>
498 <Configuration name="Release">
499 <Options>
500 <CompilerDefines>TRACE</CompilerDefines>
501 <OptimizeCode>true</OptimizeCode>
502 <CheckUnderflowOverflow>false</CheckUnderflowOverflow>
503 <AllowUnsafe>false</AllowUnsafe>
504 <WarningLevel>4</WarningLevel>
505 <WarningsAsErrors>false</WarningsAsErrors>
506 <SuppressWarnings></SuppressWarnings>
507 <OutputPath>bin</OutputPath>
508 <DebugInformation>false</DebugInformation>
509 <IncrementalBuild>true</IncrementalBuild>
510 <NoStdLib>false</NoStdLib>
511 </Options>
512 </Configuration>
513
514
515 <!-- OpenGrid Data Services -->
516 <Project name="OpenGrid.Framework.Data" path="OpenGridServices/OpenGrid.Framework.Data" type="Library">
517 <Configuration name="Debug">
518 <Options>
519 <OutputPath>../../bin/</OutputPath>
520 </Options>
521 </Configuration>
522 <Configuration name="Release">
523 <Options>
524 <OutputPath>../../bin/</OutputPath>
525 </Options>
526 </Configuration>
527
528 <ReferencePath>../../bin/</ReferencePath>
529 <Reference name="System" localCopy="false"/>
530 <Reference name="System.Xml"/>
531 <Reference name="System.Data"/>
532 <Reference name="libsecondlife.dll"/>
533 <Files>
534 <Match pattern="*.cs" recurse="true"/>
535 </Files>
536 </Project>
537
538 <Project name="OpenGrid.Framework.Data.MySQL" path="OpenGridServices/OpenGrid.Framework.Data.MySQL" type="Library">
539 <Configuration name="Debug">
540 <Options>
541 <OutputPath>../../bin/</OutputPath>
542 </Options>
543 </Configuration>
544 <Configuration name="Release">
545 <Options>
546 <OutputPath>../../bin/</OutputPath>
547 </Options>
548 </Configuration>
549
550 <ReferencePath>../../bin/</ReferencePath>
551 <Reference name="System" localCopy="false"/>
552 <Reference name="System.Xml"/>
553 <Reference name="System.Data"/>
554 <Reference name="OpenGrid.Framework.Data"/>
555 <Reference name="libsecondlife.dll"/>
556 <Reference name="MySql.Data.dll"/>
557 <Files>
558 <Match pattern="*.cs" recurse="true"/>
559 </Files>
560 </Project>
561
562 <Project name="OpenGrid.Framework.Data.DB4o" path="OpenGridServices/OpenGrid.Framework.Data.DB4o" type="Library">
563 <Configuration name="Debug">
564 <Options>
565 <OutputPath>../../bin/</OutputPath>
566 </Options>
567 </Configuration>
568 <Configuration name="Release">
569 <Options>
570 <OutputPath>../../bin/</OutputPath>
571 </Options>
572 </Configuration>
573
574 <ReferencePath>../../bin/</ReferencePath>
575 <Reference name="System" localCopy="false"/>
576 <Reference name="System.Xml"/>
577 <Reference name="System.Data"/>
578 <Reference name="OpenGrid.Framework.Data"/>
579 <Reference name="libsecondlife.dll"/>
580 <Reference name="Db4objects.Db4o.dll"/>
581 <Files>
582 <Match pattern="*.cs" recurse="true"/>
583 </Files>
584 </Project>
585
586 <Project name="OpenGrid.Framework.Data.MSSQL" path="OpenGridServices/OpenGrid.Framework.Data.MSSQL" type="Library">
587 <Configuration name="Debug">
588 <Options>
589 <OutputPath>../../bin/</OutputPath>
590 </Options>
591 </Configuration>
592 <Configuration name="Release">
593 <Options>
594 <OutputPath>../../bin/</OutputPath>
595 </Options>
596 </Configuration>
597
598 <ReferencePath>../../bin/</ReferencePath>
599 <Reference name="System" localCopy="false"/>
600 <Reference name="System.Xml"/>
601 <Reference name="System.Data"/>
602 <Reference name="OpenGrid.Framework.Data"/>
603 <Reference name="libsecondlife.dll"/>
604 <Files>
605 <Match pattern="*.cs" recurse="true"/>
606 </Files>
607 </Project>
608
609 <Project name="OpenGrid.Framework.Data.SQLite" path="OpenGridServices/OpenGrid.Framework.Data.SQLite" type="Library">
610 <Configuration name="Debug">
611 <Options>
612 <OutputPath>../../bin/</OutputPath>
613 </Options>
614 </Configuration>
615 <Configuration name="Release">
616 <Options>
617 <OutputPath>../../bin/</OutputPath>
618 </Options>
619 </Configuration>
620
621 <ReferencePath>../../bin/</ReferencePath>
622 <Reference name="System" localCopy="false"/>
623 <Reference name="System.Xml"/>
624 <Reference name="System.Data"/>
625 <Reference name="System.Data.SQLite.dll"/>
626 <Reference name="OpenGrid.Framework.Data"/>
627 <Reference name="libsecondlife.dll"/>
628 <Files>
629 <Match pattern="*.cs" recurse="true"/>
630 </Files>
631 </Project>
632
633 <!-- OGS projects -->
634
635 <Project name="OpenGrid.Framework.Manager" path="OpenGridServices/OpenGrid.Framework.Manager" type="Library">
636 <Configuration name="Debug">
637 <Options>
638 <OutputPath>../../bin/</OutputPath>
639 </Options>
640 </Configuration>
641 <Configuration name="Release">
642 <Options>
643 <OutputPath>../../bin/</OutputPath>
644 </Options>
645 </Configuration>
646
647 <ReferencePath>../../bin/</ReferencePath>
648 <Reference name="System" localCopy="false"/>
649 <Reference name="OpenSim.Framework.dll"/>
650 <Reference name="OpenSim.Servers.dll"/>
651 <Reference name="libsecondlife.dll"/>
652 <Reference name="XMLRPC"/>
653
654
655 <Files>
656 <Match pattern="*.cs" recurse="true"/>
657 </Files>
658 </Project>
659
660
661 <Project name="ServiceManager" path="OpenGridServices/ServiceManager" 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 <Reference name="System" localCopy="false"/>
675 <Reference name="System.ServiceProcess" localCopy="false"/>
676 <Reference name="System.Xml" localCopy="false"/>
677 <Reference name="libsecondlife.dll"/>
678 <Reference name="OpenSim.GenericConfig.Xml"/>
679 <Reference name="OpenSim.Framework.dll"/>
680
681 <Files>
682 <Match pattern="*.cs" recurse="true"/>
683 </Files>
684 </Project>
685
686
687 <Project name="OpenGridServices.GridServer" path="OpenGridServices/OpenGridServices.GridServer" type="Exe">
688 <Configuration name="Debug">
689 <Options>
690 <OutputPath>../../bin/</OutputPath>
691 </Options>
692 </Configuration>
693 <Configuration name="Release">
694 <Options>
695 <OutputPath>../../bin/</OutputPath>
696 </Options>
697 </Configuration>
698
699 <ReferencePath>../../bin/</ReferencePath>
700 <Reference name="System" localCopy="false"/>
701 <Reference name="System.Data" localCopy="false"/>
702 <Reference name="System.Xml" localCopy="false"/>
703 <Reference name="OpenSim.Framework"/>
704 <Reference name="OpenSim.Framework.Console"/>
705 <Reference name="OpenSim.Servers"/>
706 <Reference name="OpenGrid.Framework.Data"/>
707 <Reference name="OpenGrid.Framework.Manager"/>
708 <Reference name="OpenSim.GenericConfig.Xml"/>
709 <Reference name="libsecondlife.dll"/>
710 <Reference name="Db4objects.Db4o.dll"/>
711 <Reference name="XMLRPC"/>
712
713 <Files>
714 <Match pattern="*.cs" recurse="true"/>
715 </Files>
716 </Project>
717
718 <Project name="OpenGridServices.AssetServer" path="OpenGridServices/OpenGridServices.AssetServer" type="Exe">
719 <Configuration name="Debug">
720 <Options>
721 <OutputPath>../../bin/</OutputPath>
722 </Options>
723 </Configuration>
724 <Configuration name="Release">
725 <Options>
726 <OutputPath>../../bin/</OutputPath>
727 </Options>
728 </Configuration>
729
730 <ReferencePath>../../bin/</ReferencePath>
731 <Reference name="System" localCopy="false"/>
732 <Reference name="System.Data" localCopy="false"/>
733 <Reference name="System.Xml" localCopy="false"/>
734 <Reference name="OpenSim.Framework"/>
735 <Reference name="OpenSim.Framework.Console"/>
736 <Reference name="OpenSim.GridInterfaces.Local"/>
737 <Reference name="OpenSim.Servers"/>
738 <Reference name="libsecondlife.dll"/>
739 <Reference name="Db4objects.Db4o.dll"/>
740 <Reference name="XMLRPC"/>
741
742 <Files>
743 <Match pattern="*.cs" recurse="true"/>
744 </Files>
745 </Project>
746
747 <Project name="OpenGridServices.InventoryServer" path="OpenGridServices/OpenGridServices.InventoryServer" type="Exe">
748 <Configuration name="Debug">
749 <Options>
750 <OutputPath>../../bin/</OutputPath>
751 </Options>
752 </Configuration>
753 <Configuration name="Release">
754 <Options>
755 <OutputPath>../../bin/</OutputPath>
756 </Options>
757 </Configuration>
758
759 <ReferencePath>../../bin/</ReferencePath>
760 <Reference name="System" localCopy="false"/>
761 <Reference name="System.Data" localCopy="false"/>
762 <Reference name="System.Xml" localCopy="false"/>
763 <Reference name="OpenSim.Framework"/>
764 <Reference name="OpenSim.Framework.Console"/>
765 <Reference name="OpenSim.GridInterfaces.Local"/>
766 <Reference name="OpenGrid.Framework.Data"/>
767 <Reference name="OpenSim.Servers"/>
768 <Reference name="libsecondlife.dll"/>
769 <Reference name="Db4objects.Db4o.dll"/>
770 <Reference name="XMLRPC"/>
771
772 <Files>
773 <Match pattern="*.cs" recurse="true"/>
774 </Files>
775 </Project>
776
777 <Project name="OpenGridServices.UserServer" path="OpenGridServices/OpenGridServices.UserServer" type="Exe">
778 <Configuration name="Debug">
779 <Options>
780 <OutputPath>../../bin/</OutputPath>
781 </Options>
782 </Configuration>
783 <Configuration name="Release">
784 <Options>
785 <OutputPath>../../bin/</OutputPath>
786 </Options>
787 </Configuration>
788
789 <ReferencePath>../../bin/</ReferencePath>
790 <Reference name="System" localCopy="false"/>
791 <Reference name="System.Data" localCopy="false"/>
792 <Reference name="System.Xml" localCopy="false"/>
793 <Reference name="OpenSim.Framework"/>
794 <Reference name="OpenSim.Framework.Console"/>
795 <Reference name="OpenGrid.Framework.Data"/>
796 <Reference name="OpenSim.GenericConfig.Xml"/>
797 <Reference name="OpenSim.Servers"/>
798 <Reference name="libsecondlife.dll"/>
799 <Reference name="Db4objects.Db4o.dll"/>
800 <Reference name="XMLRPC"/>
801
802 <Files>
803 <Match pattern="*.cs" recurse="true"/>
804 </Files>
805 </Project>
806
807
808
809 <Project name="OpenGrid.Config.GridConfigDb4o" path="OpenGridServices/OpenGrid.Config/GridConfigDb4o" type="Library">
810 <Configuration name="Debug">
811 <Options>
812 <OutputPath>../../../bin/</OutputPath>
813 </Options>
814 </Configuration>
815 <Configuration name="Release">
816 <Options>
817 <OutputPath>../../../bin/</OutputPath>
818 </Options>
819 </Configuration>
820
821 <ReferencePath>../../../bin/</ReferencePath>
822 <Reference name="System" localCopy="false"/>
823 <Reference name="System.Data.dll"/>
824 <Reference name="System.Xml"/>
825 <Reference name="libsecondlife.dll"/>
826 <Reference name="Db4objects.Db4o.dll"/>
827 <Reference name="OpenSim.Framework"/>
828 <Reference name="OpenSim.Framework.Console"/>
829 <Files>
830 <Match pattern="*.cs" recurse="true"/>
831 </Files>
832 </Project>
833
834 <Project name="OpenUser.Config.UserConfigDb4o" path="OpenGridServices/OpenUser.Config/UserConfigDb4o" type="Library">
835 <Configuration name="Debug">
836 <Options>
837 <OutputPath>../../../bin/</OutputPath>
838 </Options>
839 </Configuration>
840 <Configuration name="Release">
841 <Options>
842 <OutputPath>../../../bin/</OutputPath>
843 </Options>
844 </Configuration>
845
846 <ReferencePath>../../../bin/</ReferencePath>
847 <Reference name="System" localCopy="false"/>
848 <Reference name="System.Data.dll"/>
849 <Reference name="System.Xml"/>
850 <Reference name="libsecondlife.dll"/>
851 <Reference name="Db4objects.Db4o.dll"/>
852 <Reference name="OpenSim.Framework"/>
853 <Reference name="OpenSim.Framework.Console"/>
854 <Files>
855 <Match pattern="*.cs" recurse="true"/>
856 </Files>
857 </Project>
858
859</Solution>
860
861
862 <!-- Prebuild tool -->
863 <Solution name="Prebuild" path="Prebuild/" >
864 <Configuration name="Debug">
865 <Options>
866 <CompilerDefines>DEBUG;TRACE</CompilerDefines>
867 <OptimizeCode>false</OptimizeCode>
868 <OutputPath>bin/Debug</OutputPath>
869 <DebugInformation>true</DebugInformation>
870 <SuppressWarnings>1595</SuppressWarnings>
871 </Options>
872 </Configuration>
873 <Configuration name="Release">
874 <Options>
875 <CompilerDefines>TRACE</CompilerDefines>
876 <OutputPath>bin/Release</OutputPath>
877 <OptimizeCode>true</OptimizeCode>
878 <DebugInformation>false</DebugInformation>
879 <SuppressWarnings>1595</SuppressWarnings>
880 </Options>
881 </Configuration>
882 <Project name="Prebuild" path="src/" language="C#" assemblyName="Prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild">
883 <Configuration name="Debug">
884 <Options>
885 <CompilerDefines>DEBUG;TRACE</CompilerDefines>
886 <OptimizeCode>false</OptimizeCode>
887 <OutputPath>..\..\bin\</OutputPath>
888 <DebugInformation>true</DebugInformation>
889 <KeyFile>Prebuild.snk</KeyFile>
890 <SuppressWarnings>1595</SuppressWarnings>
891 </Options>
892 </Configuration>
893 <Configuration name="Release">
894 <Options>
895 <CompilerDefines>TRACE</CompilerDefines>
896 <OutputPath>..\..\bin\</OutputPath>
897 <OptimizeCode>true</OptimizeCode>
898 <DebugInformation>false</DebugInformation>
899 <KeyFile>Prebuild.snk</KeyFile>
900 <SuppressWarnings>1595</SuppressWarnings>
901 </Options>
902 </Configuration>
903 <ReferencePath>../../bin/</ReferencePath>
904 <Reference name="System.EnterpriseServices" />
905 <Reference name="System.Xml" />
906 <Reference name="System" />
907 <Files>
908 <Match pattern="App.ico" buildAction="EmbeddedResource"/>
909 <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/>
910 <Match pattern="*.cs" recurse="true"/>
911 </Files>
912 </Project>
913 </Solution>
914</Prebuild>
915
916