prebuild.xml 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916
  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="./" version="0.5.0-$Rev$">
  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. <!-- Core OpenSim Projects -->
  35. <!--
  36. <Project name="OpenSim.Model" path="OpenSim/Model" 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. <ReferencePath>../../../bin/</ReferencePath>
  48. <Reference name="System" localCopy="false"/>
  49. <Reference name="System.Xml" localCopy="false"/>
  50. <Files>
  51. <Match pattern="*.cs" recurse="true"/>
  52. </Files>
  53. </Project>
  54. -->
  55. <Project name="OpenSim.Framework.Console" path="OpenSim/Framework/Console" type="Library">
  56. <Configuration name="Debug">
  57. <Options>
  58. <OutputPath>../../../bin/</OutputPath>
  59. </Options>
  60. </Configuration>
  61. <Configuration name="Release">
  62. <Options>
  63. <OutputPath>../../../bin/</OutputPath>
  64. </Options>
  65. </Configuration>
  66. <ReferencePath>../../../bin/</ReferencePath>
  67. <Reference name="System" localCopy="false"/>
  68. <Reference name="log4net.dll"/>
  69. <Files>
  70. <Match pattern="*.cs" recurse="true"/>
  71. </Files>
  72. </Project>
  73. <Project name="OpenSim.Framework" path="OpenSim/Framework" type="Library">
  74. <Configuration name="Debug">
  75. <Options>
  76. <OutputPath>../../bin/</OutputPath>
  77. </Options>
  78. </Configuration>
  79. <Configuration name="Release">
  80. <Options>
  81. <OutputPath>../../bin/</OutputPath>
  82. </Options>
  83. </Configuration>
  84. <ReferencePath>../../bin/</ReferencePath>
  85. <Reference name="System"/>
  86. <Reference name="System.Xml"/>
  87. <Reference name="System.Data"/>
  88. <Reference name="OpenMetaverseTypes.dll"/>
  89. <Reference name="OpenMetaverse.dll"/>
  90. <Reference name="OpenMetaverse.StructuredData.dll"/>
  91. <Reference name="XMLRPC.dll"/>
  92. <Reference name="OpenSim.Framework.Console"/>
  93. <Reference name="Nini.dll" />
  94. <Reference name="log4net.dll"/>
  95. <Reference name="Mono.Addins.dll" />
  96. <Files>
  97. <Match pattern="*.cs" recurse="false"/>
  98. <Match path="Client" pattern="*.cs" recurse="true"/>
  99. </Files>
  100. </Project>
  101. <Project name="OpenSim.Framework.Statistics" path="OpenSim/Framework/Statistics" 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. <ReferencePath>../../../bin/</ReferencePath>
  113. <Reference name="System"/>
  114. <Reference name="OpenMetaverseTypes.dll"/>
  115. <Reference name="OpenMetaverse.dll"/>
  116. <Reference name="OpenSim.Framework"/>
  117. <Files>
  118. <Match pattern="*.cs" recurse="true"/>
  119. </Files>
  120. </Project>
  121. <Project name="OpenSim.Data.Base" path="OpenSim/Data/Base" type="Library">
  122. <Configuration name="Debug">
  123. <Options>
  124. <OutputPath>../../../bin/</OutputPath>
  125. </Options>
  126. </Configuration>
  127. <Configuration name="Release">
  128. <Options>
  129. <OutputPath>../../../bin/</OutputPath>
  130. </Options>
  131. </Configuration>
  132. <ReferencePath>../../../bin/</ReferencePath>
  133. <Reference name="System" localCopy="false"/>
  134. <Reference name="System.Data"/>
  135. <Reference name="OpenSim.Framework"/>
  136. <!-- needed for LLUUID types -->
  137. <Reference name="OpenMetaverseTypes.dll"/>
  138. <Files>
  139. <Match pattern="*.cs" recurse="true"/>
  140. </Files>
  141. </Project>
  142. <Project name="OpenSim.Data" path="OpenSim/Data" type="Library">
  143. <Configuration name="Debug">
  144. <Options>
  145. <OutputPath>../../bin/</OutputPath>
  146. </Options>
  147. </Configuration>
  148. <Configuration name="Release">
  149. <Options>
  150. <OutputPath>../../bin/</OutputPath>
  151. </Options>
  152. </Configuration>
  153. <ReferencePath>../../bin/</ReferencePath>
  154. <Reference name="System" localCopy="false"/>
  155. <Reference name="System.Xml"/>
  156. <Reference name="System.Data"/>
  157. <Reference name="XMLRPC.dll"/>
  158. <Reference name="OpenMetaverse.dll"/>
  159. <Reference name="OpenMetaverseTypes.dll"/>
  160. <Reference name="OpenSim.Framework"/>
  161. <Reference name="OpenSim.Data.Base"/>
  162. <Reference name="log4net.dll"/>
  163. <Reference name="Mono.Addins.dll" />
  164. <Files>
  165. <Match pattern="*.cs" recurse="false"/>
  166. <Match pattern="Properties/*.cs" recurse="false"/>
  167. </Files>
  168. </Project>
  169. <Project name="OpenSim.Data.MySQLMapper" path="OpenSim/Data/MySQLMapper" type="Library">
  170. <Configuration name="Debug">
  171. <Options>
  172. <OutputPath>../../../bin/</OutputPath>
  173. </Options>
  174. </Configuration>
  175. <Configuration name="Release">
  176. <Options>
  177. <OutputPath>../../../bin/</OutputPath>
  178. </Options>
  179. </Configuration>
  180. <ReferencePath>../../../bin/</ReferencePath>
  181. <Reference name="System" localCopy="false"/>
  182. <Reference name="System.Xml"/>
  183. <Reference name="System.Data"/>
  184. <Reference name="OpenSim.Framework"/>
  185. <Reference name="OpenSim.Data"/>
  186. <Reference name="OpenSim.Data.Base"/>
  187. <Reference name="OpenMetaverseTypes.dll"/>
  188. <Reference name="MySql.Data.dll"/>
  189. <Reference name="OpenSim.Framework.Console"/>
  190. <Reference name="log4net.dll"/>
  191. <Files>
  192. <Match pattern="*.cs" recurse="true"/>
  193. </Files>
  194. </Project>
  195. <Project name="OpenSim.Data.MSSQLMapper" path="OpenSim/Data/MSSQLMapper" type="Library">
  196. <Configuration name="Debug">
  197. <Options>
  198. <OutputPath>../../../bin/</OutputPath>
  199. </Options>
  200. </Configuration>
  201. <Configuration name="Release">
  202. <Options>
  203. <OutputPath>../../../bin/</OutputPath>
  204. </Options>
  205. </Configuration>
  206. <ReferencePath>../../../bin/</ReferencePath>
  207. <Reference name="System" localCopy="false"/>
  208. <Reference name="System.Xml"/>
  209. <Reference name="System.Data"/>
  210. <Reference name="OpenSim.Framework"/>
  211. <Reference name="OpenSim.Data"/>
  212. <Reference name="OpenSim.Data.Base"/>
  213. <Reference name="OpenMetaverseTypes.dll"/>
  214. <Reference name="OpenSim.Framework.Console"/>
  215. <Reference name="log4net.dll"/>
  216. <Files>
  217. <Match pattern="*.cs" recurse="true"/>
  218. </Files>
  219. </Project>
  220. <Project name="OpenSim.Data.MapperFactory" path="OpenSim/Data/MapperFactory" type="Library">
  221. <Configuration name="Debug">
  222. <Options>
  223. <OutputPath>../../../bin/</OutputPath>
  224. </Options>
  225. </Configuration>
  226. <Configuration name="Release">
  227. <Options>
  228. <OutputPath>../../../bin/</OutputPath>
  229. </Options>
  230. </Configuration>
  231. <ReferencePath>../../../bin/</ReferencePath>
  232. <Reference name="System" localCopy="false"/>
  233. <Reference name="System.Xml"/>
  234. <Reference name="System.Data"/>
  235. <Reference name="OpenSim.Framework"/>
  236. <Reference name="OpenSim.Data"/>
  237. <Reference name="OpenSim.Data.Base"/>
  238. <Reference name="OpenSim.Data.MySQLMapper"/>
  239. <Reference name="OpenSim.Data.MSSQLMapper"/>
  240. <Files>
  241. <Match pattern="*.cs" recurse="true"/>
  242. </Files>
  243. </Project>
  244. <Project name="OpenSim.Framework.Configuration.XML" path="OpenSim/Framework/Configuration/XML" type="Library">
  245. <Configuration name="Debug">
  246. <Options>
  247. <OutputPath>../../../../bin/</OutputPath>
  248. </Options>
  249. </Configuration>
  250. <Configuration name="Release">
  251. <Options>
  252. <OutputPath>../../../../bin/</OutputPath>
  253. </Options>
  254. </Configuration>
  255. <ReferencePath>../../../../bin/</ReferencePath>
  256. <Reference name="System"/>
  257. <Reference name="System.Xml"/>
  258. <Reference name="OpenMetaverseTypes.dll"/>
  259. <Reference name="XMLRPC.dll"/>
  260. <Reference name="OpenSim.Framework"/>
  261. <Reference name="OpenSim.Framework.Console"/>
  262. <Reference name="OpenSim.Data"/>
  263. <Files>
  264. <Match pattern="*.cs" recurse="true"/>
  265. </Files>
  266. </Project>
  267. <Project name="OpenSim.Framework.Configuration.HTTP" path="OpenSim/Framework/Configuration/HTTP" type="Library">
  268. <Configuration name="Debug">
  269. <Options>
  270. <OutputPath>../../../../bin/</OutputPath>
  271. </Options>
  272. </Configuration>
  273. <Configuration name="Release">
  274. <Options>
  275. <OutputPath>../../../../bin/</OutputPath>
  276. </Options>
  277. </Configuration>
  278. <ReferencePath>../../../../bin/</ReferencePath>
  279. <Reference name="System"/>
  280. <Reference name="System.Xml"/>
  281. <Reference name="OpenMetaverseTypes.dll"/>
  282. <Reference name="XMLRPC.dll"/>
  283. <Reference name="OpenSim.Framework"/>
  284. <Reference name="OpenSim.Framework.Console"/>
  285. <Reference name="OpenSim.Framework.Configuration.XML"/>
  286. <Reference name="OpenSim.Data"/>
  287. <Reference name="log4net.dll"/>
  288. <Files>
  289. <Match pattern="*.cs" recurse="true"/>
  290. </Files>
  291. </Project>
  292. <Project name="OpenSim.Framework.AssetLoader.Filesystem" path="OpenSim/Framework/AssetLoader/Filesystem" type="Library">
  293. <Configuration name="Debug">
  294. <Options>
  295. <OutputPath>../../../../bin/</OutputPath>
  296. </Options>
  297. </Configuration>
  298. <Configuration name="Release">
  299. <Options>
  300. <OutputPath>../../../../bin/</OutputPath>
  301. </Options>
  302. </Configuration>
  303. <ReferencePath>../../../../bin/</ReferencePath>
  304. <Reference name="System"/>
  305. <Reference name="System.Xml" localCopy="false"/>
  306. <Reference name="OpenSim.Framework.Console"/>
  307. <Reference name="OpenSim.Framework"/>
  308. <Reference name="OpenMetaverseTypes.dll"/>
  309. <Reference name="Nini.dll" />
  310. <Reference name="log4net.dll"/>
  311. <Files>
  312. <Match pattern="*.cs" recurse="true"/>
  313. </Files>
  314. </Project>
  315. <Project name="OpenSim.Framework.RegionLoader.Web" path="OpenSim/Framework/RegionLoader/Web" type="Library">
  316. <Configuration name="Debug">
  317. <Options>
  318. <OutputPath>../../../../bin/</OutputPath>
  319. </Options>
  320. </Configuration>
  321. <Configuration name="Release">
  322. <Options>
  323. <OutputPath>../../../../bin/</OutputPath>
  324. </Options>
  325. </Configuration>
  326. <ReferencePath>../../../../bin/</ReferencePath>
  327. <Reference name="System"/>
  328. <Reference name="System.Xml"/>
  329. <Reference name="OpenMetaverseTypes.dll"/>
  330. <Reference name="XMLRPC.dll"/>
  331. <Reference name="OpenSim.Framework"/>
  332. <Reference name="OpenSim.Framework.Console"/>
  333. <Reference name="Nini.dll" />
  334. <Reference name="log4net.dll"/>
  335. <Files>
  336. <Match pattern="*.cs" recurse="true"/>
  337. </Files>
  338. </Project>
  339. <Project name="OpenSim.Framework.RegionLoader.Filesystem" path="OpenSim/Framework/RegionLoader/Filesystem" type="Library">
  340. <Configuration name="Debug">
  341. <Options>
  342. <OutputPath>../../../../bin/</OutputPath>
  343. </Options>
  344. </Configuration>
  345. <Configuration name="Release">
  346. <Options>
  347. <OutputPath>../../../../bin/</OutputPath>
  348. </Options>
  349. </Configuration>
  350. <ReferencePath>../../../../bin/</ReferencePath>
  351. <Reference name="System"/>
  352. <Reference name="System.Xml"/>
  353. <Reference name="OpenMetaverseTypes.dll"/>
  354. <Reference name="XMLRPC.dll"/>
  355. <Reference name="OpenSim.Framework"/>
  356. <Reference name="OpenSim.Framework.Console"/>
  357. <Reference name="Nini.dll" />
  358. <Files>
  359. <Match pattern="*.cs" recurse="true"/>
  360. </Files>
  361. </Project>
  362. <Project name="OpenSim.Framework.Servers" path="OpenSim/Framework/Servers" type="Library">
  363. <Configuration name="Debug">
  364. <Options>
  365. <OutputPath>../../../bin/</OutputPath>
  366. </Options>
  367. </Configuration>
  368. <Configuration name="Release">
  369. <Options>
  370. <OutputPath>../../../bin/</OutputPath>
  371. </Options>
  372. </Configuration>
  373. <ReferencePath>../../../bin/</ReferencePath>
  374. <Reference name="System"/>
  375. <Reference name="System.Xml"/>
  376. <Reference name="OpenSim.Framework"/>
  377. <Reference name="OpenSim.Framework.Console"/>
  378. <Reference name="OpenSim.Framework.Statistics"/>
  379. <Reference name="OpenMetaverse.StructuredData.dll"/>
  380. <Reference name="OpenMetaverseTypes.dll"/>
  381. <Reference name="XMLRPC.dll"/>
  382. <Reference name="log4net.dll"/>
  383. <Reference name="HttpServer.dll"/>
  384. <Files>
  385. <Match pattern="*.cs" recurse="true">
  386. <Exclude name="Tests" pattern="Tests" />
  387. <!-- on temporary suspension -->
  388. <Exclude pattern="OSHttpHandler\.cs" />
  389. <Exclude pattern="OSHttpHttpHandler\.cs" />
  390. <Exclude pattern="OSHttpRequestPump\.cs" />
  391. <Exclude pattern="OSHttpRequestQueue\.cs" />
  392. <Exclude pattern="OSHttpServer.*\.cs" />
  393. <Exclude pattern="OSHttpXmlRpcHandler.*\.cs" />
  394. </Match>
  395. </Files>
  396. </Project>
  397. <Project name="OpenSim.Region.Physics.Manager" path="OpenSim/Region/Physics/Manager" type="Library">
  398. <Configuration name="Debug">
  399. <Options>
  400. <OutputPath>../../../../bin/</OutputPath>
  401. </Options>
  402. </Configuration>
  403. <Configuration name="Release">
  404. <Options>
  405. <OutputPath>../../../../bin/</OutputPath>
  406. </Options>
  407. </Configuration>
  408. <ReferencePath>../../../../bin/</ReferencePath>
  409. <Reference name="System" localCopy="false"/>
  410. <Reference name="System.Xml" localCopy="false" />
  411. <Reference name="OpenMetaverseTypes.dll"/>
  412. <Reference name="OpenSim.Framework" localCopy="false"/>
  413. <Reference name="OpenSim.Framework.Console" localCopy="false"/>
  414. <Reference name="nunit.framework.dll" />
  415. <Reference name="Nini.dll" />
  416. <Reference name="log4net.dll"/>
  417. <Files>
  418. <Match pattern="*.cs" recurse="false"/>
  419. </Files>
  420. </Project>
  421. <!-- Physics Plug-ins -->
  422. <Project name="OpenSim.Region.Physics.BasicPhysicsPlugin" path="OpenSim/Region/Physics/BasicPhysicsPlugin" type="Library">
  423. <Configuration name="Debug">
  424. <Options>
  425. <OutputPath>../../../../bin/Physics/</OutputPath>
  426. </Options>
  427. </Configuration>
  428. <Configuration name="Release">
  429. <Options>
  430. <OutputPath>../../../../bin/Physics/</OutputPath>
  431. </Options>
  432. </Configuration>
  433. <ReferencePath>../../../../bin/</ReferencePath>
  434. <Reference name="System" localCopy="false"/>
  435. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  436. <Reference name="Nini.dll" />
  437. <Reference name="OpenSim.Framework"/>
  438. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  439. <Files>
  440. <Match pattern="*.cs" recurse="true"/>
  441. </Files>
  442. </Project>
  443. <Project name="OpenSim.Region.Physics.POSPlugin" path="OpenSim/Region/Physics/POSPlugin" type="Library">
  444. <Configuration name="Debug">
  445. <Options>
  446. <OutputPath>../../../../bin/Physics/</OutputPath>
  447. </Options>
  448. </Configuration>
  449. <Configuration name="Release">
  450. <Options>
  451. <OutputPath>../../../../bin/Physics/</OutputPath>
  452. </Options>
  453. </Configuration>
  454. <ReferencePath>../../../../bin/</ReferencePath>
  455. <Reference name="System" localCopy="false"/>
  456. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  457. <Reference name="Nini.dll" />
  458. <Reference name="OpenSim.Framework"/>
  459. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  460. <Files>
  461. <Match pattern="*.cs" recurse="true"/>
  462. </Files>
  463. </Project>
  464. <Project name="OpenSim.Region.Physics.PhysXPlugin" path="OpenSim/Region/Physics/PhysXPlugin" type="Library">
  465. <Configuration name="Debug">
  466. <Options>
  467. <OutputPath>../../../../bin/Physics/</OutputPath>
  468. </Options>
  469. </Configuration>
  470. <Configuration name="Release">
  471. <Options>
  472. <OutputPath>../../../../bin/Physics/</OutputPath>
  473. </Options>
  474. </Configuration>
  475. <ReferencePath>../../../../bin/</ReferencePath>
  476. <Reference name="System" localCopy="false"/>
  477. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  478. <Reference name="Nini.dll" />
  479. <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/>
  480. <Reference name="OpenSim.Framework"/>
  481. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  482. <Files>
  483. <Match pattern="*.cs" recurse="true"/>
  484. </Files>
  485. </Project>
  486. <Project name="OpenSim.Region.Physics.OdePlugin" path="OpenSim/Region/Physics/OdePlugin" type="Library">
  487. <Configuration name="Debug">
  488. <Options>
  489. <OutputPath>../../../../bin/Physics/</OutputPath>
  490. </Options>
  491. </Configuration>
  492. <Configuration name="Release">
  493. <Options>
  494. <OutputPath>../../../../bin/Physics/</OutputPath>
  495. </Options>
  496. </Configuration>
  497. <ReferencePath>../../../../bin/</ReferencePath>
  498. <Reference name="System" localCopy="false"/>
  499. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  500. <Reference name="Nini.dll" />
  501. <Reference name="OpenSim.Framework"/>
  502. <Reference name="OpenSim.Framework.Console"/>
  503. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  504. <Reference name="Ode.NET.dll" localCopy="false" />
  505. <Reference name="nunit.framework.dll" />
  506. <Reference name="log4net.dll"/>
  507. <Files>
  508. <Match pattern="*.cs" recurse="true"/>
  509. </Files>
  510. </Project>
  511. <Project name="OpenSim.Region.Physics.BulletXPlugin" path="OpenSim/Region/Physics/BulletXPlugin" type="Library">
  512. <Configuration name="Debug">
  513. <Options>
  514. <OutputPath>../../../../bin/Physics/</OutputPath>
  515. </Options>
  516. </Configuration>
  517. <Configuration name="Release">
  518. <Options>
  519. <OutputPath>../../../../bin/Physics/</OutputPath>
  520. </Options>
  521. </Configuration>
  522. <ReferencePath>../../../../bin/</ReferencePath>
  523. <Reference name="System" localCopy="false"/>
  524. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  525. <Reference name="Nini.dll" />
  526. <Reference name="OpenSim.Framework"/>
  527. <Reference name="OpenSim.Framework.Console" localCopy="false"/>
  528. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  529. <Reference name="MonoXnaCompactMaths.dll" localCopy="false"/>
  530. <Reference name="Modified.XnaDevRu.BulletX.dll" localCopy="false" />
  531. <Reference name="log4net.dll"/>
  532. <Files>
  533. <Match pattern="*.cs" recurse="true"/>
  534. </Files>
  535. </Project>
  536. <Project name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library">
  537. <Configuration name="Debug">
  538. <Options>
  539. <OutputPath>../../../../bin/Physics/</OutputPath>
  540. </Options>
  541. </Configuration>
  542. <Configuration name="Release">
  543. <Options>
  544. <OutputPath>../../../../bin/Physics/</OutputPath>
  545. </Options>
  546. </Configuration>
  547. <ReferencePath>../../../../bin/</ReferencePath>
  548. <Reference name="System" localCopy="false"/>
  549. <Reference name="System.Drawing"/>
  550. <Reference name="OpenMetaverseTypes.dll" localCopy="false"/>
  551. <Reference name="OpenMetaverse.dll" localCopy="false"/>
  552. <Reference name="Nini.dll" />
  553. <Reference name="OpenSim.Framework"/>
  554. <Reference name="OpenSim.Framework.Console"/>
  555. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  556. <Reference name="log4net.dll"/>
  557. <Files>
  558. <Match pattern="*.cs" recurse="true"/>
  559. </Files>
  560. </Project>
  561. <Project name="OpenSim.Region.Interfaces" path="OpenSim/Region/Interfaces" type="Library">
  562. <Configuration name="Debug">
  563. <Options>
  564. <OutputPath>../../../bin/</OutputPath>
  565. </Options>
  566. </Configuration>
  567. <Configuration name="Release">
  568. <Options>
  569. <OutputPath>../../../bin/</OutputPath>
  570. </Options>
  571. </Configuration>
  572. <ReferencePath>../../../bin/</ReferencePath>
  573. <Reference name="System" localCopy="false"/>
  574. <Reference name="System.Runtime.Remoting"/>
  575. <Reference name="OpenSim.Framework"/>
  576. <Reference name="OpenMetaverse.StructuredData.dll"/>
  577. <Reference name="OpenMetaverseTypes.dll"/>
  578. <Files>
  579. <Match pattern="*.cs" recurse="true"/>
  580. </Files>
  581. </Project>
  582. <!-- OpenSim.Framework.Communications -->
  583. <Project name="OpenSim.Framework.Communications" path="OpenSim/Framework/Communications" type="Library">
  584. <Configuration name="Debug">
  585. <Options>
  586. <OutputPath>../../../bin/</OutputPath>
  587. </Options>
  588. </Configuration>
  589. <Configuration name="Release">
  590. <Options>
  591. <OutputPath>../../../bin/</OutputPath>
  592. </Options>
  593. </Configuration>
  594. <ReferencePath>../../../bin/</ReferencePath>
  595. <Reference name="System"/>
  596. <Reference name="System.Xml"/>
  597. <Reference name="System.Web"/>
  598. <Reference name="OpenSim.Framework"/>
  599. <Reference name="OpenSim.Framework.AssetLoader.Filesystem"/>
  600. <Reference name="OpenSim.Data" />
  601. <Reference name="OpenSim.Framework.Servers"/>
  602. <Reference name="OpenSim.Framework.Console"/>
  603. <Reference name="OpenSim.Framework.Statistics"/>
  604. <Reference name="OpenSim.Region.Interfaces"/>
  605. <Reference name="OpenMetaverseTypes.dll"/>
  606. <Reference name="OpenMetaverse.StructuredData.dll"/>
  607. <!-- FIXME: The OpenMetaverse.dll reference can be dropped when the TransferRequestPacket reference is removed from the code -->
  608. <Reference name="OpenMetaverse.dll"/>
  609. <Reference name="Nini.dll" />
  610. <Reference name="XMLRPC.dll"/>
  611. <Reference name="log4net.dll"/>
  612. <Reference name="GlynnTucker.Cache.dll"/>
  613. <Files>
  614. <Match pattern="*.cs" recurse="true">
  615. <Exclude name="Tests" pattern="Tests"/>
  616. </Match>
  617. </Files>
  618. </Project>
  619. <Project name="OpenSim.Region.Communications.Local" path="OpenSim/Region/Communications/Local" type="Library">
  620. <Configuration name="Debug">
  621. <Options>
  622. <OutputPath>../../../../bin/</OutputPath>
  623. </Options>
  624. </Configuration>
  625. <Configuration name="Release">
  626. <Options>
  627. <OutputPath>../../../../bin/</OutputPath>
  628. </Options>
  629. </Configuration>
  630. <ReferencePath>../../../../bin/</ReferencePath>
  631. <Reference name="System"/>
  632. <Reference name="System.Xml"/>
  633. <Reference name="OpenSim.Framework"/>
  634. <Reference name="OpenSim.Framework.Communications"/>
  635. <Reference name="OpenSim.Framework.Console"/>
  636. <Reference name="OpenSim.Data" />
  637. <Reference name="OpenSim.Framework.Servers"/>
  638. <Reference name="OpenSim.Framework.Statistics"/>
  639. <Reference name="OpenMetaverseTypes.dll"/>
  640. <Reference name="XMLRPC.dll"/>
  641. <Reference name="log4net.dll"/>
  642. <Files>
  643. <Match pattern="*.cs" recurse="true"/>
  644. </Files>
  645. </Project>
  646. <Project name="OpenSim.Region.Communications.OGS1" path="OpenSim/Region/Communications/OGS1" type="Library">
  647. <Configuration name="Debug">
  648. <Options>
  649. <OutputPath>../../../../bin/</OutputPath>
  650. </Options>
  651. </Configuration>
  652. <Configuration name="Release">
  653. <Options>
  654. <OutputPath>../../../../bin/</OutputPath>
  655. </Options>
  656. </Configuration>
  657. <ReferencePath>../../../../bin/</ReferencePath>
  658. <Reference name="System"/>
  659. <Reference name="System.Xml"/>
  660. <Reference name="System.Data"/>
  661. <Reference name="System.Runtime.Remoting"/>
  662. <Reference name="OpenSim.Framework"/>
  663. <Reference name="OpenSim.Data" />
  664. <Reference name="OpenSim.Framework.Communications" />
  665. <Reference name="OpenSim.Framework.Console"/>
  666. <Reference name="OpenSim.Framework.Servers"/>
  667. <Reference name="OpenSim.Framework.Statistics"/>
  668. <Reference name="OpenSim.Region.Communications.Local" />
  669. <Reference name="OpenMetaverseTypes.dll"/>
  670. <Reference name="Nini.dll" />
  671. <Reference name="XMLRPC.dll"/>
  672. <Reference name="log4net.dll"/>
  673. <Files>
  674. <Match pattern="*.cs" recurse="true"/>
  675. </Files>
  676. </Project>
  677. <!-- OGS projects -->
  678. <Project name="OpenSim.Grid.Communications.OGS1" path="OpenSim/Grid/Communications/OGS1" type="Library">
  679. <Configuration name="Debug">
  680. <Options>
  681. <OutputPath>../../../../bin/</OutputPath>
  682. </Options>
  683. </Configuration>
  684. <Configuration name="Release">
  685. <Options>
  686. <OutputPath>../../../../bin/</OutputPath>
  687. </Options>
  688. </Configuration>
  689. <ReferencePath>../../../../bin/</ReferencePath>
  690. <Reference name="System"/>
  691. <Reference name="OpenSim.Framework"/>
  692. <Reference name="OpenSim.Framework.Communications" />
  693. <Reference name="OpenSim.Framework.Servers"/>
  694. <Reference name="OpenMetaverseTypes.dll"/>
  695. <Reference name="XMLRPC.dll"/>
  696. <Reference name="log4net.dll"/>
  697. <Files>
  698. <Match pattern="*.cs" recurse="true"/>
  699. </Files>
  700. </Project>
  701. <Project name="OpenSim.Grid.GridServer" path="OpenSim/Grid/GridServer" type="Exe">
  702. <Configuration name="Debug">
  703. <Options>
  704. <OutputPath>../../../bin/</OutputPath>
  705. </Options>
  706. </Configuration>
  707. <Configuration name="Release">
  708. <Options>
  709. <OutputPath>../../../bin/</OutputPath>
  710. </Options>
  711. </Configuration>
  712. <ReferencePath>../../../bin/</ReferencePath>
  713. <Reference name="System" localCopy="false"/>
  714. <Reference name="System.Data" localCopy="false"/>
  715. <Reference name="System.Xml" localCopy="false"/>
  716. <Reference name="Mono.Addins.dll" />
  717. <Reference name="OpenSim.Framework"/>
  718. <Reference name="OpenSim.Framework.Communications"/>
  719. <Reference name="OpenSim.Framework.Console"/>
  720. <Reference name="OpenSim.Framework.Servers"/>
  721. <Reference name="OpenSim.Data"/>
  722. <Reference name="OpenSim.Data.MySQL"/>
  723. <Reference name="OpenMetaverseTypes.dll"/>
  724. <Reference name="OpenMetaverse.dll"/>
  725. <Reference name="XMLRPC.dll"/>
  726. <Reference name="log4net.dll"/>
  727. <Files>
  728. <Match pattern="*.cs" recurse="true"/>
  729. </Files>
  730. </Project>
  731. <Project name="OpenSim.Grid.AssetServer" path="OpenSim/Grid/AssetServer" type="Exe">
  732. <Configuration name="Debug">
  733. <Options>
  734. <OutputPath>../../../bin/</OutputPath>
  735. </Options>
  736. </Configuration>
  737. <Configuration name="Release">
  738. <Options>
  739. <OutputPath>../../../bin/</OutputPath>
  740. </Options>
  741. </Configuration>
  742. <ReferencePath>../../../bin/</ReferencePath>
  743. <Reference name="System" localCopy="false"/>
  744. <Reference name="System.Data" localCopy="false"/>
  745. <Reference name="System.Xml" localCopy="false"/>
  746. <Reference name="OpenSim.Framework"/>
  747. <Reference name="OpenSim.Framework.AssetLoader.Filesystem"/>
  748. <Reference name="OpenSim.Framework.Console"/>
  749. <Reference name="OpenSim.Framework.Servers"/>
  750. <Reference name="OpenSim.Framework.Communications"/>
  751. <Reference name="OpenSim.Framework.Statistics"/>
  752. <Reference name="OpenMetaverseTypes.dll"/>
  753. <Reference name="log4net.dll"/>
  754. <Files>
  755. <Match pattern="*.cs" recurse="true"/>
  756. </Files>
  757. </Project>
  758. <Project name="OpenSim.Grid.UserServer" path="OpenSim/Grid/UserServer" type="Exe">
  759. <Configuration name="Debug">
  760. <Options>
  761. <OutputPath>../../../bin/</OutputPath>
  762. </Options>
  763. </Configuration>
  764. <Configuration name="Release">
  765. <Options>
  766. <OutputPath>../../../bin/</OutputPath>
  767. </Options>
  768. </Configuration>
  769. <ReferencePath>../../../bin/</ReferencePath>
  770. <Reference name="System" localCopy="false"/>
  771. <Reference name="System.Data" localCopy="false"/>
  772. <Reference name="System.Xml" localCopy="false"/>
  773. <Reference name="System.Web" localCopy="false"/>
  774. <Reference name="OpenSim.Framework"/>
  775. <Reference name="OpenSim.Framework.Console"/>
  776. <Reference name="OpenSim.Framework.Communications"/>
  777. <Reference name="OpenSim.Data"/>
  778. <Reference name="OpenSim.Framework.Servers"/>
  779. <Reference name="OpenSim.Framework.Statistics"/>
  780. <Reference name="OpenSim.Grid.Communications.OGS1"/>
  781. <Reference name="OpenMetaverseTypes.dll"/>
  782. <Reference name="OpenMetaverse.StructuredData.dll"/>
  783. <Reference name="XMLRPC.dll"/>
  784. <Reference name="log4net.dll"/>
  785. <Reference name="DotNetOpenId.dll"/>
  786. <Files>
  787. <Match pattern="*.cs" recurse="true"/>
  788. </Files>
  789. </Project>
  790. <Project name="OpenSim.Grid.InventoryServer" path="OpenSim/Grid/InventoryServer" type="Exe">
  791. <Configuration name="Debug">
  792. <Options>
  793. <OutputPath>../../../bin/</OutputPath>
  794. </Options>
  795. </Configuration>
  796. <Configuration name="Release">
  797. <Options>
  798. <OutputPath>../../../bin/</OutputPath>
  799. </Options>
  800. </Configuration>
  801. <ReferencePath>../../../bin/</ReferencePath>
  802. <Reference name="System" localCopy="false"/>
  803. <Reference name="System.Data" localCopy="false"/>
  804. <Reference name="System.Xml" localCopy="false"/>
  805. <Reference name="OpenSim.Framework"/>
  806. <Reference name="OpenSim.Framework.Console"/>
  807. <Reference name="OpenSim.Framework.Communications"/>
  808. <Reference name="OpenSim.Data"/>
  809. <Reference name="OpenSim.Framework.Servers"/>
  810. <Reference name="OpenMetaverseTypes.dll"/>
  811. <Reference name="log4net.dll"/>
  812. <Reference name="XMLRPC.dll"/>
  813. <Files>
  814. <Match pattern="*.cs" recurse="true"/>
  815. </Files>
  816. </Project>
  817. <Project name="OpenSim.Grid.MessagingServer" path="OpenSim/Grid/MessagingServer" type="Exe">
  818. <Configuration name="Debug">
  819. <Options>
  820. <OutputPath>../../../bin/</OutputPath>
  821. </Options>
  822. </Configuration>
  823. <Configuration name="Release">
  824. <Options>
  825. <OutputPath>../../../bin/</OutputPath>
  826. </Options>
  827. </Configuration>
  828. <ReferencePath>../../../bin/</ReferencePath>
  829. <Reference name="System" localCopy="false"/>
  830. <Reference name="System.Data" localCopy="false"/>
  831. <Reference name="System.Xml" localCopy="false"/>
  832. <Reference name="OpenSim.Framework"/>
  833. <Reference name="OpenSim.Framework.Console"/>
  834. <Reference name="OpenSim.Framework.Communications"/>
  835. <Reference name="OpenSim.Data"/>
  836. <Reference name="OpenSim.Framework.Servers"/>
  837. <Reference name="OpenMetaverseTypes.dll"/>
  838. <Reference name="OpenMetaverse.dll"/>
  839. <Reference name="XMLRPC.dll"/>
  840. <Reference name="log4net.dll"/>
  841. <Files>
  842. <Match pattern="*.cs" recurse="true"/>
  843. </Files>
  844. </Project>
  845. <Project name="OpenSim.Region.Environment" path="OpenSim/Region/Environment" type="Library">
  846. <Configuration name="Debug">
  847. <Options>
  848. <OutputPath>../../../bin/</OutputPath>
  849. </Options>
  850. </Configuration>
  851. <Configuration name="Release">
  852. <Options>
  853. <OutputPath>../../../bin/</OutputPath>
  854. </Options>
  855. </Configuration>
  856. <ReferencePath>../../../bin/</ReferencePath>
  857. <Reference name="System" localCopy="false"/>
  858. <Reference name="System.Xml"/>
  859. <Reference name="System.Drawing"/>
  860. <Reference name="System.Runtime.Remoting"/>
  861. <Reference name="System.Web"/>
  862. <Reference name="OpenMetaverseTypes.dll"/>
  863. <Reference name="OpenMetaverse.StructuredData.dll"/>
  864. <Reference name="OpenMetaverse.dll"/>
  865. <Reference name="OpenSim.Framework"/>
  866. <Reference name="OpenSim.Data" />
  867. <Reference name="OpenSim.Region.Interfaces" />
  868. <Reference name="OpenSim.Framework.Console"/>
  869. <Reference name="OpenSim.Framework.Servers"/>
  870. <Reference name="OpenSim.Framework.Statistics"/>
  871. <Reference name="OpenSim.Region.Physics.Manager"/>
  872. <Reference name="OpenSim.Grid.AssetServer"/>
  873. <!-- For scripting in funny languages by default -->
  874. <Reference name="Microsoft.JScript"/>
  875. <Reference name="XMLRPC.dll"/>
  876. <Reference name="OpenSim.Framework.Communications"/>
  877. <Reference name="OpenSim.Data.Base"/>
  878. <Reference name="Nini.dll" />
  879. <Reference name="log4net.dll"/>
  880. <Reference name="DotNetOpenMail.dll"/>
  881. <Files>
  882. <Match pattern="*.cs" recurse="true">
  883. <Exclude name="Tests" pattern="Tests" />
  884. </Match>
  885. </Files>
  886. </Project>
  887. <Project name="OpenSim.Region.Communications.Hypergrid" path="OpenSim/Region/Communications/Hypergrid" type="Library">
  888. <Configuration name="Debug">
  889. <Options>
  890. <OutputPath>../../../../bin/</OutputPath>
  891. </Options>
  892. </Configuration>
  893. <Configuration name="Release">
  894. <Options>
  895. <OutputPath>../../../../bin/</OutputPath>
  896. </Options>
  897. </Configuration>
  898. <ReferencePath>../../../../bin/</ReferencePath>
  899. <Reference name="System"/>
  900. <Reference name="System.Drawing"/>
  901. <Reference name="System.Runtime.Remoting"/>
  902. <Reference name="System.Xml"/>
  903. <Reference name="OpenSim.Framework"/>
  904. <Reference name="OpenSim.Framework.Communications" />
  905. <Reference name="OpenSim.Framework.Servers"/>
  906. <Reference name="OpenSim.Framework.Statistics"/>
  907. <Reference name="OpenSim.Region.Communications.Local"/>
  908. <Reference name="OpenSim.Region.Communications.OGS1"/>
  909. <Reference name="OpenSim.Region.Environment"/>
  910. <Reference name="OpenSim.Region.Interfaces"/>
  911. <Reference name="OpenMetaverse.dll"/>
  912. <Reference name="OpenMetaverseTypes.dll"/>
  913. <Reference name="XMLRPC.dll"/>
  914. <Reference name="log4net.dll"/>
  915. <Files>
  916. <Match pattern="*.cs" recurse="true"/>
  917. </Files>
  918. </Project>
  919. <Project name="OpenSim.Region.ClientStack" path="OpenSim/Region/ClientStack" type="Library">
  920. <Configuration name="Debug">
  921. <Options>
  922. <OutputPath>../../../bin/</OutputPath>
  923. </Options>
  924. </Configuration>
  925. <Configuration name="Release">
  926. <Options>
  927. <OutputPath>../../../bin/</OutputPath>
  928. </Options>
  929. </Configuration>
  930. <ReferencePath>../../../bin/</ReferencePath>
  931. <Reference name="System" localCopy="false"/>
  932. <Reference name="System.Xml"/>
  933. <Reference name="OpenMetaverseTypes.dll"/>
  934. <Reference name="OpenSim.Region.Environment"/>
  935. <Reference name="OpenSim.Framework"/>
  936. <Reference name="OpenSim.Data"/>
  937. <Reference name="OpenSim.Framework.Servers"/>
  938. <Reference name="OpenSim.Framework.Console"/>
  939. <Reference name="OpenSim.Framework.Communications"/>
  940. <Reference name="OpenSim.Framework.Statistics"/>
  941. <Reference name="OpenSim.Region.Communications.Local"/>
  942. <Reference name="OpenSim.Region.Physics.Manager"/>
  943. <Reference name="XMLRPC.dll"/>
  944. <Reference name="Nini.dll" />
  945. <Reference name="log4net.dll"/>
  946. <Files>
  947. <Match pattern="*.cs" recurse="false"/>
  948. </Files>
  949. </Project>
  950. <!-- ClientStack Plugins -->
  951. <Project name="OpenSim.Region.ClientStack.LindenUDP" path="OpenSim/Region/ClientStack/LindenUDP" type="Library">
  952. <Configuration name="Debug">
  953. <Options>
  954. <OutputPath>../../../../bin/</OutputPath>
  955. </Options>
  956. </Configuration>
  957. <Configuration name="Release">
  958. <Options>
  959. <OutputPath>../../../../bin/</OutputPath>
  960. </Options>
  961. </Configuration>
  962. <ReferencePath>../../../../bin/</ReferencePath>
  963. <Reference name="System" localCopy="false"/>
  964. <Reference name="System.Xml"/>
  965. <Reference name="OpenMetaverseTypes.dll"/>
  966. <Reference name="OpenMetaverse.StructuredData.dll"/>
  967. <Reference name="OpenMetaverse.dll"/>
  968. <Reference name="OpenSim.Region.Environment"/>
  969. <Reference name="OpenSim.Framework"/>
  970. <Reference name="OpenSim.Region.Interfaces"/>
  971. <Reference name="OpenSim.Data"/>
  972. <Reference name="OpenSim.Framework.Servers"/>
  973. <Reference name="OpenSim.Framework.Console"/>
  974. <Reference name="OpenSim.Framework.Communications"/>
  975. <Reference name="OpenSim.Framework.Statistics"/>
  976. <Reference name="OpenSim.Region.ClientStack"/>
  977. <Reference name="OpenSim.Region.Communications.Local"/>
  978. <Reference name="OpenSim.Region.Physics.Manager"/>
  979. <Reference name="XMLRPC.dll"/>
  980. <Reference name="Nini.dll" />
  981. <Reference name="log4net.dll"/>
  982. <Reference name="C5.dll" />
  983. <Files>
  984. <Match pattern="*.cs" recurse="false"/>
  985. </Files>
  986. </Project>
  987. <!-- Datastore Plugins -->
  988. <Project name="OpenSim.Data.Null" path="OpenSim/Data/Null" type="Library">
  989. <Configuration name="Debug">
  990. <Options>
  991. <OutputPath>../../../bin/</OutputPath>
  992. </Options>
  993. </Configuration>
  994. <Configuration name="Release">
  995. <Options>
  996. <OutputPath>../../../bin/</OutputPath>
  997. </Options>
  998. </Configuration>
  999. <ReferencePath>../../../bin/</ReferencePath>
  1000. <Reference name="System" localCopy="false"/>
  1001. <Reference name="System.Xml"/>
  1002. <Reference name="OpenMetaverseTypes.dll"/>
  1003. <Reference name="OpenSim.Framework"/>
  1004. <Reference name="OpenSim.Region.Environment"/>
  1005. <Reference name="OpenSim.Framework.Console"/>
  1006. <Reference name="log4net.dll"/>
  1007. <Files>
  1008. <Match pattern="*.cs" recurse="true"/>
  1009. </Files>
  1010. </Project>
  1011. <Project name="OpenSim.Region.Modules.Python" path="OpenSim/Region/Modules/Python" type="Library">
  1012. <Configuration name="Debug">
  1013. <Options>
  1014. <OutputPath>../../../../bin/</OutputPath>
  1015. </Options>
  1016. </Configuration>
  1017. <Configuration name="Release">
  1018. <Options>
  1019. <OutputPath>../../../../bin/</OutputPath>
  1020. </Options>
  1021. </Configuration>
  1022. <ReferencePath>../../../../bin/</ReferencePath>
  1023. <Reference name="System" localCopy="false"/>
  1024. <Reference name="OpenMetaverseTypes.dll"/>
  1025. <Reference name="IronPython.dll"/>
  1026. <Reference name="IronMath.dll"/>
  1027. <Reference name="OpenSim.Framework"/>
  1028. <Reference name="OpenSim.Data.Base" />
  1029. <Reference name="OpenSim.Region.Environment"/>
  1030. <Reference name="Nini.dll" />
  1031. <Reference name="log4net.dll"/>
  1032. <Files>
  1033. <Match pattern="*.cs" recurse="true"/>
  1034. </Files>
  1035. </Project>
  1036. <Project name="OpenSim.Region.Modules.Terrain.Extensions.DefaultEffects" path="OpenSim/Region/Modules/Terrain/Extensions/DefaultEffects" type="Library">
  1037. <Configuration name="Debug">
  1038. <Options>
  1039. <OutputPath>../../../../../../bin/Terrain/</OutputPath>
  1040. </Options>
  1041. </Configuration>
  1042. <Configuration name="Release">
  1043. <Options>
  1044. <OutputPath>../../../../../../bin/Terrain/</OutputPath>
  1045. </Options>
  1046. </Configuration>
  1047. <ReferencePath>../../../../../../bin/</ReferencePath>
  1048. <Reference name="System" localCopy="false"/>
  1049. <Reference name="OpenSim.Framework"/>
  1050. <Reference name="OpenSim.Region.Environment"/>
  1051. <Files>
  1052. <Match pattern="*.cs" recurse="true"/>
  1053. </Files>
  1054. </Project>
  1055. <Project name="OpenSim.Region.Modules.SvnSerialiser" path="OpenSim/Region/Modules/SvnSerialiser" type="Library">
  1056. <Configuration name="Debug">
  1057. <Options>
  1058. <OutputPath>../../../../bin/</OutputPath>
  1059. </Options>
  1060. </Configuration>
  1061. <Configuration name="Release">
  1062. <Options>
  1063. <OutputPath>../../../../bin/</OutputPath>
  1064. </Options>
  1065. </Configuration>
  1066. <ReferencePath>../../../../bin/</ReferencePath>
  1067. <Reference name="System" localCopy="false"/>
  1068. <Reference name="System.Xml"/>
  1069. <Reference name="System.Data"/>
  1070. <Reference name="OpenMetaverseTypes.dll"/>
  1071. <Reference name="OpenSim.Framework"/>
  1072. <Reference name="OpenSim.Framework.Communications"/>
  1073. <Reference name="OpenSim.Data.Base" />
  1074. <Reference name="OpenSim.Region.Environment"/>
  1075. <Reference name="Nini.dll" />
  1076. <Reference name="PumaCode.SvnDotNet.dll" />
  1077. <Reference name="log4net.dll"/>
  1078. <Files>
  1079. <Match pattern="*.cs" recurse="true"/>
  1080. </Files>
  1081. </Project>
  1082. <!-- OpenSim app -->
  1083. <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe">
  1084. <Configuration name="Debug">
  1085. <Options>
  1086. <OutputPath>../../../bin/</OutputPath>
  1087. </Options>
  1088. </Configuration>
  1089. <Configuration name="Release">
  1090. <Options>
  1091. <OutputPath>../../../bin/</OutputPath>
  1092. </Options>
  1093. </Configuration>
  1094. <ReferencePath>../../../bin/</ReferencePath>
  1095. <Reference name="System" localCopy="false"/>
  1096. <Reference name="System.Xml"/>
  1097. <Reference name="Mono.Addins.dll" />
  1098. <Reference name="OpenMetaverseTypes.dll"/>
  1099. <Reference name="OpenMetaverse.StructuredData.dll"/>
  1100. <Reference name="OpenMetaverse.dll"/>
  1101. <Reference name="OpenSim.Framework"/>
  1102. <Reference name="OpenSim.Data"/>
  1103. <Reference name="OpenSim.Framework.Console"/>
  1104. <Reference name="OpenSim.Region.Physics.Manager"/>
  1105. <Reference name="OpenSim.Framework.Servers"/>
  1106. <Reference name="OpenSim.Framework.Statistics"/>
  1107. <Reference name="OpenSim.Region.Environment"/>
  1108. <Reference name="OpenSim.Region.ClientStack"/>
  1109. <Reference name="OpenSim.Framework.Communications"/>
  1110. <Reference name="OpenSim.Region.Communications.OGS1"/>
  1111. <Reference name="XMLRPC.dll"/>
  1112. <Reference name="OpenSim.Region.Communications.Local"/>
  1113. <Reference name="OpenSim.Region.Communications.Hypergrid"/>
  1114. <Reference name="Nini.dll" />
  1115. <Reference name="log4net.dll"/>
  1116. <Files>
  1117. <Match pattern="*.cs" recurse="true"/>
  1118. </Files>
  1119. </Project>
  1120. <Project name="OpenSim.ApplicationPlugins.LoadRegions" path="OpenSim/ApplicationPlugins/LoadRegions" type="Library">
  1121. <Configuration name="Debug">
  1122. <Options>
  1123. <OutputPath>../../../bin/</OutputPath>
  1124. </Options>
  1125. </Configuration>
  1126. <Configuration name="Release">
  1127. <Options>
  1128. <OutputPath>../../../bin/</OutputPath>
  1129. </Options>
  1130. </Configuration>
  1131. <ReferencePath>../../../bin/</ReferencePath>
  1132. <Reference name="Mono.Addins.dll" />
  1133. <Reference name="System"/>
  1134. <Reference name="System.Xml"/>
  1135. <Reference name="OpenMetaverseTypes.dll" />
  1136. <Reference name="Nini.dll" />
  1137. <Reference name="OpenSim"/>
  1138. <Reference name="OpenSim.Region.ClientStack"/>
  1139. <Reference name="OpenSim.Region.Environment"/>
  1140. <Reference name="OpenSim.Framework"/>
  1141. <Reference name="OpenSim.Framework.Console"/>
  1142. <Reference name="OpenSim.Framework.RegionLoader.Filesystem"/>
  1143. <Reference name="OpenSim.Framework.RegionLoader.Web"/>
  1144. <Reference name="OpenSim.Framework.Servers"/>
  1145. <Reference name="log4net.dll"/>
  1146. <Files>
  1147. <Match pattern="*.cs" recurse="true"/>
  1148. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1149. </Files>
  1150. </Project>
  1151. <Project name="OpenSim.ApplicationPlugins.RemoteController" path="OpenSim/ApplicationPlugins/RemoteController" type="Library">
  1152. <Configuration name="Debug">
  1153. <Options>
  1154. <OutputPath>../../../bin/</OutputPath>
  1155. </Options>
  1156. </Configuration>
  1157. <Configuration name="Release">
  1158. <Options>
  1159. <OutputPath>../../../bin/</OutputPath>
  1160. </Options>
  1161. </Configuration>
  1162. <ReferencePath>../../../bin/</ReferencePath>
  1163. <Reference name="Mono.Addins.dll" />
  1164. <Reference name="System"/>
  1165. <Reference name="System.Xml"/>
  1166. <Reference name="OpenMetaverseTypes.dll" />
  1167. <Reference name="Nini.dll" />
  1168. <Reference name="XMLRPC.dll" />
  1169. <Reference name="OpenSim"/>
  1170. <Reference name="OpenSim.Region.ClientStack"/>
  1171. <Reference name="OpenSim.Region.Environment"/>
  1172. <Reference name="OpenSim.Framework.Communications"/>
  1173. <Reference name="OpenSim.Framework"/>
  1174. <Reference name="OpenSim.Framework.Servers"/>
  1175. <Reference name="OpenSim.Framework.Console"/>
  1176. <Reference name="log4net.dll"/>
  1177. <Files>
  1178. <Match pattern="*.cs" recurse="true"/>
  1179. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1180. </Files>
  1181. </Project>
  1182. <!-- REST plugins -->
  1183. <Project name="OpenSim.ApplicationPlugins.Rest"
  1184. path="OpenSim/ApplicationPlugins/Rest" type="Library">
  1185. <Configuration name="Debug">
  1186. <Options>
  1187. <OutputPath>../../../bin/</OutputPath>
  1188. </Options>
  1189. </Configuration>
  1190. <Configuration name="Release">
  1191. <Options>
  1192. <OutputPath>../../../bin/</OutputPath>
  1193. </Options>
  1194. </Configuration>
  1195. <ReferencePath>../../../bin/</ReferencePath>
  1196. <Reference name="Mono.Addins.dll" />
  1197. <Reference name="System"/>
  1198. <Reference name="System.Xml"/>
  1199. <Reference name="OpenMetaverseTypes.dll" />
  1200. <Reference name="Nini.dll" />
  1201. <Reference name="XMLRPC.dll" />
  1202. <Reference name="OpenSim"/>
  1203. <Reference name="OpenSim.Region.ClientStack"/>
  1204. <Reference name="OpenSim.Region.Environment"/>
  1205. <Reference name="OpenSim.Framework.Communications"/>
  1206. <Reference name="OpenSim.Framework"/>
  1207. <Reference name="OpenSim.Framework.Servers"/>
  1208. <Reference name="OpenSim.Framework.Console"/>
  1209. <Reference name="log4net.dll"/>
  1210. <Files>
  1211. <Match pattern="*.cs" recurse="false"/>
  1212. </Files>
  1213. </Project>
  1214. <Project name="OpenSim.ApplicationPlugins.Rest.Regions"
  1215. path="OpenSim/ApplicationPlugins/Rest/Regions" type="Library">
  1216. <Configuration name="Debug">
  1217. <Options>
  1218. <OutputPath>../../../../bin/</OutputPath>
  1219. </Options>
  1220. </Configuration>
  1221. <Configuration name="Release">
  1222. <Options>
  1223. <OutputPath>../../../../bin/</OutputPath>
  1224. </Options>
  1225. </Configuration>
  1226. <ReferencePath>../../../../bin/</ReferencePath>
  1227. <Reference name="Mono.Addins.dll" />
  1228. <Reference name="System"/>
  1229. <Reference name="System.Xml"/>
  1230. <Reference name="OpenMetaverseTypes.dll" />
  1231. <Reference name="Nini.dll" />
  1232. <Reference name="XMLRPC.dll" />
  1233. <Reference name="OpenSim"/>
  1234. <Reference name="OpenSim.Region.ClientStack"/>
  1235. <Reference name="OpenSim.Region.Environment"/>
  1236. <Reference name="OpenSim.Framework.Communications"/>
  1237. <Reference name="OpenSim.Framework"/>
  1238. <Reference name="OpenSim.Framework.Servers"/>
  1239. <Reference name="OpenSim.Framework.Console"/>
  1240. <Reference name="OpenSim.ApplicationPlugins.Rest"/>
  1241. <Reference name="log4net.dll"/>
  1242. <Files>
  1243. <Match pattern="*.cs" recurse="true"/>
  1244. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1245. </Files>
  1246. </Project>
  1247. <Project name="OpenSim.ApplicationPlugins.Rest.Inventory"
  1248. path="OpenSim/ApplicationPlugins/Rest/Inventory" type="Library">
  1249. <Configuration name="Debug">
  1250. <Options>
  1251. <OutputPath>../../../../bin/</OutputPath>
  1252. </Options>
  1253. </Configuration>
  1254. <Configuration name="Release">
  1255. <Options>
  1256. <OutputPath>../../../../bin/</OutputPath>
  1257. </Options>
  1258. </Configuration>
  1259. <ReferencePath>../../../../bin/</ReferencePath>
  1260. <Reference name="Mono.Addins.dll" />
  1261. <Reference name="System"/>
  1262. <Reference name="System.Xml"/>
  1263. <Reference name="System.Drawing"/>
  1264. <Reference name="OpenMetaverseTypes.dll"/>
  1265. <Reference name="OpenMetaverse.dll"/>
  1266. <Reference name="Nini.dll" />
  1267. <Reference name="XMLRPC.dll" />
  1268. <Reference name="OpenSim"/>
  1269. <Reference name="OpenSim.Region.ClientStack"/>
  1270. <Reference name="OpenSim.Region.Environment"/>
  1271. <Reference name="OpenSim.Framework.Communications"/>
  1272. <Reference name="OpenSim.Framework"/>
  1273. <Reference name="OpenSim.Framework.Servers"/>
  1274. <Reference name="OpenSim.Framework.Console"/>
  1275. <Reference name="OpenSim.ApplicationPlugins.Rest"/>
  1276. <Reference name="log4net.dll"/>
  1277. <Files>
  1278. <Match pattern="*.cs" recurse="true"/>
  1279. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1280. </Files>
  1281. </Project>
  1282. <!-- /REST plugins -->
  1283. <!-- Scene Server API Example Apps -->
  1284. <Project name="OpenSim.Region.DataSnapshot" path="OpenSim/Region/DataSnapshot" type="Library">
  1285. <Configuration name="Debug">
  1286. <Options>
  1287. <OutputPath>../../../bin/</OutputPath>
  1288. </Options>
  1289. </Configuration>
  1290. <Configuration name="Release">
  1291. <Options>
  1292. <OutputPath>../../../bin/</OutputPath>
  1293. </Options>
  1294. </Configuration>
  1295. <ReferencePath>../../../bin/</ReferencePath>
  1296. <Reference name="System" localCopy="false"/>
  1297. <Reference name="System.Xml"/>
  1298. <Reference name="System.Data"/>
  1299. <Reference name="OpenSim.Framework"/>
  1300. <Reference name="OpenSim.Framework.Communications"/>
  1301. <Reference name="OpenSim.Framework.Console"/>
  1302. <Reference name="OpenSim.Framework.Servers"/>
  1303. <Reference name="OpenSim.Region.Environment"/>
  1304. <Reference name="OpenMetaverseTypes.dll"/>
  1305. <Reference name="OpenMetaverse.dll"/>
  1306. <Reference name="Nini.dll" />
  1307. <Reference name="log4net.dll" />
  1308. <Files>
  1309. <Match pattern="*.cs" recurse="true"/>
  1310. </Files>
  1311. </Project>
  1312. <Project name="OpenSim.Region.Examples.SimpleModule" path="OpenSim/Region/Examples/SimpleModule" type="Library">
  1313. <Configuration name="Debug">
  1314. <Options>
  1315. <OutputPath>bin/</OutputPath>
  1316. </Options>
  1317. </Configuration>
  1318. <Configuration name="Release">
  1319. <Options>
  1320. <OutputPath>bin/</OutputPath>
  1321. </Options>
  1322. </Configuration>
  1323. <ReferencePath>../../../../bin/</ReferencePath>
  1324. <Reference name="OpenMetaverseTypes.dll"/>
  1325. <Reference name="OpenMetaverse.dll"/>
  1326. <Reference name="System" localCopy="false"/>
  1327. <Reference name="OpenSim.Framework"/>
  1328. <Reference name="OpenSim.Region.Environment"/>
  1329. <Reference name="Nini.dll" />
  1330. <Reference name="log4net.dll"/>
  1331. <Files>
  1332. <Match pattern="*.cs" recurse="true"/>
  1333. </Files>
  1334. </Project>
  1335. <!-- Data Base Modules -->
  1336. <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library">
  1337. <Configuration name="Debug">
  1338. <Options>
  1339. <OutputPath>../../../bin/</OutputPath>
  1340. </Options>
  1341. </Configuration>
  1342. <Configuration name="Release">
  1343. <Options>
  1344. <OutputPath>../../../bin/</OutputPath>
  1345. </Options>
  1346. </Configuration>
  1347. <ReferencePath>../../../bin/</ReferencePath>
  1348. <Reference name="System" localCopy="false"/>
  1349. <Reference name="System.Xml"/>
  1350. <Reference name="System.Data"/>
  1351. <Reference name="System.Drawing"/>
  1352. <Reference name="OpenSim.Framework"/>
  1353. <Reference name="OpenSim.Data"/>
  1354. <Reference name="OpenSim.Data.MapperFactory"/>
  1355. <Reference name="OpenSim.Data.Base"/>
  1356. <Reference name="OpenSim.Data.MySQLMapper"/>
  1357. <Reference name="OpenMetaverseTypes.dll"/>
  1358. <Reference name="OpenMetaverse.dll"/>
  1359. <Reference name="MySql.Data.dll"/>
  1360. <Reference name="OpenSim.Framework.Console"/>
  1361. <Reference name="OpenSim.Region.Environment"/>
  1362. <Reference name="log4net.dll"/>
  1363. <Reference name="Mono.Addins.dll" />
  1364. <Files>
  1365. <Match pattern="*.cs" recurse="true" >
  1366. <Exclude name="Tests" pattern="Tests" />
  1367. </Match>
  1368. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1369. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1370. </Files>
  1371. </Project>
  1372. <Project name="OpenSim.Data.MSSQL" path="OpenSim/Data/MSSQL" type="Library">
  1373. <Configuration name="Debug">
  1374. <Options>
  1375. <OutputPath>../../../bin/</OutputPath>
  1376. </Options>
  1377. </Configuration>
  1378. <Configuration name="Release">
  1379. <Options>
  1380. <OutputPath>../../../bin/</OutputPath>
  1381. </Options>
  1382. </Configuration>
  1383. <ReferencePath>../../../bin/</ReferencePath>
  1384. <Reference name="System" localCopy="false"/>
  1385. <Reference name="System.Xml"/>
  1386. <Reference name="System.Data"/>
  1387. <Reference name="System.Drawing"/>
  1388. <Reference name="OpenSim.Framework"/>
  1389. <Reference name="OpenSim.Data"/>
  1390. <Reference name="OpenSim.Region.Environment"/>
  1391. <Reference name="OpenSim.Framework.Console"/>
  1392. <Reference name="OpenMetaverseTypes.dll"/>
  1393. <Reference name="OpenMetaverse.dll"/>
  1394. <Reference name="log4net.dll"/>
  1395. <Reference name="Mono.Addins.dll" />
  1396. <Files>
  1397. <Match pattern="*.cs" recurse="true"/>
  1398. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1399. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1400. </Files>
  1401. </Project>
  1402. <Project name="OpenSim.Data.SQLite" path="OpenSim/Data/SQLite" type="Library">
  1403. <Configuration name="Debug">
  1404. <Options>
  1405. <OutputPath>../../../bin/</OutputPath>
  1406. </Options>
  1407. </Configuration>
  1408. <Configuration name="Release">
  1409. <Options>
  1410. <OutputPath>../../../bin/</OutputPath>
  1411. </Options>
  1412. </Configuration>
  1413. <ReferencePath>../../../bin/</ReferencePath>
  1414. <Reference name="System" localCopy="false"/>
  1415. <Reference name="System.Xml"/>
  1416. <Reference name="System.Data"/>
  1417. <Reference name="System.Data.SQLite.dll"/>
  1418. <Reference name="OpenSim.Data"/>
  1419. <Reference name="System.Drawing"/>
  1420. <Reference name="OpenSim.Framework"/>
  1421. <Reference name="OpenSim.Framework.Console"/>
  1422. <Reference name="OpenSim.Region.Environment"/>
  1423. <Reference name="OpenMetaverseTypes.dll"/>
  1424. <Reference name="OpenMetaverse.dll"/>
  1425. <Reference name="Mono.Data.SqliteClient"/>
  1426. <Reference name="Mono.Addins.dll" />
  1427. <Reference name="log4net.dll"/>
  1428. <Files>
  1429. <Match pattern="*.cs" recurse="true" >
  1430. <Exclude name="Tests" pattern="Tests" />
  1431. </Match>
  1432. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1433. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1434. </Files>
  1435. </Project>
  1436. <Project name="OpenSim.Data.NHibernate" path="OpenSim/Data/NHibernate" type="Library">
  1437. <Configuration name="Debug">
  1438. <Options>
  1439. <OutputPath>../../../bin/</OutputPath>
  1440. </Options>
  1441. </Configuration>
  1442. <Configuration name="Release">
  1443. <Options>
  1444. <OutputPath>../../../bin/</OutputPath>
  1445. </Options>
  1446. </Configuration>
  1447. <ReferencePath>../../../bin/</ReferencePath>
  1448. <Reference name="System" localCopy="false"/>
  1449. <Reference name="System.Xml"/>
  1450. <Reference name="System.Data"/>
  1451. <Reference name="System.Drawing"/>
  1452. <Reference name="OpenSim.Data"/>
  1453. <Reference name="OpenSim.Framework"/>
  1454. <Reference name="OpenSim.Framework.Console"/>
  1455. <Reference name="OpenSim.Region.Environment"/>
  1456. <Reference name="OpenMetaverseTypes.dll"/>
  1457. <Reference name="OpenMetaverse.dll"/>
  1458. <Reference name="NHibernate.dll"/>
  1459. <Reference name="log4net.dll"/>
  1460. <Files>
  1461. <Match pattern="*.cs" recurse="true" >
  1462. <Exclude name="Tests" pattern="Tests" />
  1463. </Match>
  1464. <Match path="Resources" pattern="*.xml" buildAction="EmbeddedResource"/>
  1465. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1466. <!-- add more as you go -->
  1467. <Match path="Resources/SQLiteDialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1468. <Match path="Resources/MySQLDialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1469. <Match path="Resources/MsSql2005Dialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1470. <Match path="Resources/PostgreSQLDialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1471. </Files>
  1472. </Project>
  1473. <Project name="SmartThreadPool" path="ThirdParty/SmartThreadPool" type="Library">
  1474. <Configuration name="Debug">
  1475. <Options>
  1476. <OutputPath>../../bin/</OutputPath>
  1477. </Options>
  1478. </Configuration>
  1479. <Configuration name="Release">
  1480. <Options>
  1481. <OutputPath>../../bin/</OutputPath>
  1482. </Options>
  1483. </Configuration>
  1484. <ReferencePath>../../bin/</ReferencePath>
  1485. <Reference name="System" localCopy="false"/>
  1486. <Reference name="System.Xml"/>
  1487. <Reference name="System.Data"/>
  1488. <Reference name="System.Web"/>
  1489. <Files>
  1490. <Match pattern="*.cs" recurse="false"/>
  1491. </Files>
  1492. </Project>
  1493. <Project name="OpenSim.Region.ScriptEngine.Shared" path="OpenSim/Region/ScriptEngine/Shared" type="Library">
  1494. <Configuration name="Debug">
  1495. <Options>
  1496. <OutputPath>../../../../bin/</OutputPath>
  1497. </Options>
  1498. </Configuration>
  1499. <Configuration name="Release">
  1500. <Options>
  1501. <OutputPath>../../../../bin/</OutputPath>
  1502. </Options>
  1503. </Configuration>
  1504. <ReferencePath>../../../../bin/</ReferencePath>
  1505. <Reference name="System" localCopy="false"/>
  1506. <Reference name="System.Data" localCopy="false"/>
  1507. <Reference name="System.Web" localCopy="false"/>
  1508. <Reference name="System.Xml" localCopy="false"/>
  1509. <Reference name="OpenMetaverseTypes.dll"/>
  1510. <Reference name="OpenSim" />
  1511. <Reference name="OpenSim.Framework"/>
  1512. <Reference name="OpenSim.Framework.Communications"/>
  1513. <Reference name="OpenSim.Region.Environment" />
  1514. <Reference name="OpenSim.Framework.Console"/>
  1515. <Reference name="Nini.dll" />
  1516. <Reference name="RAIL.dll"/>
  1517. <Reference name="Nini.dll" />
  1518. <Reference name="log4net.dll"/>
  1519. <Reference name="SmartThreadPool"/>
  1520. <Files>
  1521. <Match pattern="*.cs" recurse="false"/>
  1522. <Match path="../Interfaces" pattern="*.cs" recurse="false"/>
  1523. <Match path="Api/Interface" pattern="*.cs" recurse="false"/>
  1524. </Files>
  1525. </Project>
  1526. <Project name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime" path="OpenSim/Region/ScriptEngine/Shared/Api/Runtime" type="Library">
  1527. <Configuration name="Debug">
  1528. <Options>
  1529. <OutputPath>../../../../../../bin/</OutputPath>
  1530. </Options>
  1531. </Configuration>
  1532. <Configuration name="Release">
  1533. <Options>
  1534. <OutputPath>../../../../../../bin/</OutputPath>
  1535. </Options>
  1536. </Configuration>
  1537. <ReferencePath>../../../../../../bin/</ReferencePath>
  1538. <Reference name="System" localCopy="false"/>
  1539. <Reference name="System.Data" localCopy="false"/>
  1540. <Reference name="System.Web" localCopy="false"/>
  1541. <Reference name="System.Xml" localCopy="false"/>
  1542. <Reference name="OpenMetaverseTypes.dll"/>
  1543. <Reference name="OpenSim" />
  1544. <Reference name="OpenSim.Framework"/>
  1545. <Reference name="OpenSim.Framework.Communications"/>
  1546. <Reference name="OpenSim.Region.Environment" />
  1547. <Reference name="OpenSim.Framework.Console"/>
  1548. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1549. <Reference name="Nini.dll" />
  1550. <Reference name="RAIL.dll"/>
  1551. <Reference name="Nini.dll" />
  1552. <Reference name="log4net.dll"/>
  1553. <Files>
  1554. <Match pattern="*.cs" recurse="false"/>
  1555. </Files>
  1556. </Project>
  1557. <Project name="OpenSim.Region.ScriptEngine.Shared.YieldProlog" path="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/" type="Library">
  1558. <Configuration name="Debug">
  1559. <Options>
  1560. <OutputPath>../../../../../../../bin/</OutputPath>
  1561. </Options>
  1562. </Configuration>
  1563. <Configuration name="Release">
  1564. <Options>
  1565. <OutputPath>../../../../../../../bin/</OutputPath>
  1566. </Options>
  1567. </Configuration>
  1568. <ReferencePath>../../../../../../../bin/</ReferencePath>
  1569. <Reference name="System" localCopy="false"/>
  1570. <Reference name="System.Data" localCopy="false"/>
  1571. <Reference name="System.Web" localCopy="false"/>
  1572. <Reference name="System.Xml" localCopy="false"/>
  1573. <Reference name="OpenMetaverseTypes.dll"/>
  1574. <Reference name="OpenSim" />
  1575. <Reference name="OpenSim.Framework"/>
  1576. <Reference name="OpenSim.Framework.Communications"/>
  1577. <Reference name="OpenSim.Region.Environment" />
  1578. <Reference name="OpenSim.Framework.Console"/>
  1579. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1580. <Reference name="Nini.dll" />
  1581. <Reference name="RAIL.dll"/>
  1582. <Reference name="Nini.dll" />
  1583. <Reference name="log4net.dll"/>
  1584. <Files>
  1585. <Match pattern="*.cs" recurse="false"/>
  1586. </Files>
  1587. </Project>
  1588. <Project name="OpenSim.Region.ScriptEngine.Shared.Api" path="OpenSim/Region/ScriptEngine/Shared/Api/Implementation" type="Library">
  1589. <Configuration name="Debug">
  1590. <Options>
  1591. <OutputPath>../../../../../../bin/</OutputPath>
  1592. </Options>
  1593. </Configuration>
  1594. <Configuration name="Release">
  1595. <Options>
  1596. <OutputPath>../../../../../../bin/</OutputPath>
  1597. </Options>
  1598. </Configuration>
  1599. <ReferencePath>../../../../../../bin/</ReferencePath>
  1600. <Reference name="System" localCopy="false"/>
  1601. <Reference name="System.Data" localCopy="false"/>
  1602. <Reference name="System.Web" localCopy="false"/>
  1603. <Reference name="System.Xml" localCopy="false"/>
  1604. <Reference name="OpenMetaverseTypes.dll"/>
  1605. <Reference name="OpenMetaverse.dll"/>
  1606. <Reference name="OpenSim" />
  1607. <Reference name="OpenSim.Framework"/>
  1608. <Reference name="OpenSim.Framework.Communications"/>
  1609. <Reference name="OpenSim.Region.Interfaces" />
  1610. <Reference name="OpenSim.Region.Environment" />
  1611. <Reference name="OpenSim.Region.Physics.Manager" />
  1612. <Reference name="OpenSim.Framework.Console"/>
  1613. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1614. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime"/>
  1615. <Reference name="Nini.dll" />
  1616. <Reference name="RAIL.dll"/>
  1617. <Reference name="Nini.dll" />
  1618. <Reference name="log4net.dll"/>
  1619. <Files>
  1620. <Match pattern="*.cs" recurse="true"/>
  1621. </Files>
  1622. </Project>
  1623. <Project name="OpenSim.Region.ScriptEngine.Shared.CodeTools" path="OpenSim/Region/ScriptEngine/Shared/CodeTools" type="Library">
  1624. <Configuration name="Debug">
  1625. <Options>
  1626. <OutputPath>../../../../../bin/</OutputPath>
  1627. </Options>
  1628. </Configuration>
  1629. <Configuration name="Release">
  1630. <Options>
  1631. <OutputPath>../../../../../bin/</OutputPath>
  1632. </Options>
  1633. </Configuration>
  1634. <ReferencePath>../../../../../bin/</ReferencePath>
  1635. <Reference name="System" localCopy="false"/>
  1636. <Reference name="Microsoft.JScript"/>
  1637. <Reference name="OpenSim.Framework" />
  1638. <Reference name="OpenSim.Region.Environment" />
  1639. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1640. <Reference name="OpenSim.Region.ScriptEngine.Shared.YieldProlog"/>
  1641. <Reference name="OpenSim.Region.Environment" />
  1642. <Reference name="OpenMetaverseTypes.dll"/>
  1643. <Reference name="Nini.dll" />
  1644. <Reference name="RAIL.dll"/>
  1645. <Reference name="log4net.dll"/>
  1646. <Reference name="Tools.dll"/>
  1647. <Files>
  1648. <Match pattern="*.cs" recurse="true">
  1649. <Exclude name="Tests" pattern="Tests" />
  1650. </Match>
  1651. </Files>
  1652. </Project>
  1653. <Project name="OpenSim.Region.ScriptEngine.Shared.Instance" path="OpenSim/Region/ScriptEngine/Shared/Instance" type="Library">
  1654. <Configuration name="Debug">
  1655. <Options>
  1656. <OutputPath>../../../../../bin/</OutputPath>
  1657. </Options>
  1658. </Configuration>
  1659. <Configuration name="Release">
  1660. <Options>
  1661. <OutputPath>../../../../../bin/</OutputPath>
  1662. </Options>
  1663. </Configuration>
  1664. <ReferencePath>../../../../../bin/</ReferencePath>
  1665. <Reference name="System" localCopy="false"/>
  1666. <Reference name="System.Data" localCopy="false"/>
  1667. <Reference name="System.Web" localCopy="false"/>
  1668. <Reference name="System.Xml" localCopy="false"/>
  1669. <Reference name="OpenMetaverseTypes.dll"/>
  1670. <Reference name="OpenSim" />
  1671. <Reference name="OpenSim.Framework"/>
  1672. <Reference name="OpenSim.Framework.Communications"/>
  1673. <Reference name="OpenSim.Region.Interfaces" />
  1674. <Reference name="OpenSim.Region.Environment" />
  1675. <Reference name="OpenSim.Framework.Console"/>
  1676. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1677. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1678. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api"/>
  1679. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime"/>
  1680. <Reference name="SmartThreadPool"/>
  1681. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1682. <Reference name="Nini.dll" />
  1683. <Reference name="RAIL.dll"/>
  1684. <Reference name="log4net.dll"/>
  1685. <Files>
  1686. <Match pattern="*.cs" recurse="true"/>
  1687. </Files>
  1688. </Project>
  1689. <Project name="OpenSim.Region.ScriptEngine.XEngine" path="OpenSim/Region/ScriptEngine/XEngine" type="Library">
  1690. <Configuration name="Debug">
  1691. <Options>
  1692. <OutputPath>../../../../bin/</OutputPath>
  1693. </Options>
  1694. </Configuration>
  1695. <Configuration name="Release">
  1696. <Options>
  1697. <OutputPath>../../../../bin/</OutputPath>
  1698. </Options>
  1699. </Configuration>
  1700. <ReferencePath>../../../../bin/</ReferencePath>
  1701. <Reference name="System" localCopy="false"/>
  1702. <Reference name="System.Data" localCopy="false"/>
  1703. <Reference name="System.Web" localCopy="false"/>
  1704. <Reference name="System.Xml" localCopy="false"/>
  1705. <Reference name="OpenMetaverseTypes.dll"/>
  1706. <Reference name="OpenMetaverse.StructuredData.dll"/>
  1707. <Reference name="OpenSim" />
  1708. <Reference name="OpenSim.Framework"/>
  1709. <Reference name="OpenSim.Framework.Communications"/>
  1710. <Reference name="OpenSim.Region.Interfaces" />
  1711. <Reference name="OpenSim.Region.Environment" />
  1712. <Reference name="OpenSim.Framework.Console"/>
  1713. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1714. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1715. <Reference name="OpenSim.Region.ScriptEngine.Shared.Instance"/>
  1716. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api"/>
  1717. <Reference name="SmartThreadPool"/>
  1718. <Reference name="Nini.dll" />
  1719. <Reference name="RAIL.dll"/>
  1720. <Reference name="log4net.dll"/>
  1721. <Files>
  1722. <Match pattern="*.cs" recurse="true"/>
  1723. </Files>
  1724. </Project>
  1725. <Project name="OpenSim.Region.ScriptEngine.DotNetEngine" path="OpenSim/Region/ScriptEngine/DotNetEngine" type="Library">
  1726. <Configuration name="Debug">
  1727. <Options>
  1728. <OutputPath>../../../../bin/</OutputPath>
  1729. </Options>
  1730. </Configuration>
  1731. <Configuration name="Release">
  1732. <Options>
  1733. <OutputPath>../../../../bin/</OutputPath>
  1734. </Options>
  1735. </Configuration>
  1736. <ReferencePath>../../../../bin/</ReferencePath>
  1737. <ReferencePath>../../../../bin/</ReferencePath>
  1738. <Reference name="System" localCopy="false"/>
  1739. <Reference name="System.Data" localCopy="false"/>
  1740. <Reference name="System.Xml" localCopy="false"/>
  1741. <Reference name="System.Runtime.Remoting" localCopy="false"/>
  1742. <Reference name="OpenMetaverseTypes.dll"/>
  1743. <Reference name="OpenMetaverse.StructuredData.dll"/>
  1744. <Reference name="RAIL.dll"/>
  1745. <Reference name="OpenSim.Framework"/>
  1746. <Reference name="OpenSim.Framework.Console"/>
  1747. <Reference name="OpenSim.Region.Environment" />
  1748. <Reference name="OpenSim.Region.Interfaces" />
  1749. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1750. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api"/>
  1751. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime"/>
  1752. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1753. <Reference name="Microsoft.JScript"/>
  1754. <Reference name="Nini.dll" />
  1755. <Reference name="log4net.dll"/>
  1756. <Reference name="Tools.dll"/>
  1757. <Files>
  1758. <Match pattern="*.cs" recurse="true"/>
  1759. </Files>
  1760. </Project>
  1761. <Project name="OpenSim.ScriptEngine.Shared.Script" path="OpenSim/ScriptEngine/Shared.Script" type="Library">
  1762. <Configuration name="Debug">
  1763. <Options>
  1764. <OutputPath>../../../bin/</OutputPath>
  1765. </Options>
  1766. </Configuration>
  1767. <Configuration name="Release">
  1768. <Options>
  1769. <OutputPath>../../../bin/</OutputPath>
  1770. </Options>
  1771. </Configuration>
  1772. <ReferencePath>../../../bin/</ReferencePath>
  1773. <Reference name="System" localCopy="false"/>
  1774. <Files>
  1775. <Match pattern="*.cs" recurse="true" >
  1776. <Exclude name="Tests" pattern="Tests" />
  1777. </Match>
  1778. </Files>
  1779. </Project>
  1780. <Project name="OpenSim.ScriptEngine.Shared" path="OpenSim/ScriptEngine/Shared" type="Library">
  1781. <Configuration name="Debug">
  1782. <Options>
  1783. <OutputPath>../../../bin/</OutputPath>
  1784. </Options>
  1785. </Configuration>
  1786. <Configuration name="Release">
  1787. <Options>
  1788. <OutputPath>../../../bin/</OutputPath>
  1789. </Options>
  1790. </Configuration>
  1791. <ReferencePath>../../../bin/</ReferencePath>
  1792. <Reference name="System" localCopy="false"/>
  1793. <Reference name="System.Data" localCopy="false"/>
  1794. <Reference name="System.Web" localCopy="false"/>
  1795. <Reference name="System.Xml" localCopy="false"/>
  1796. <Reference name="OpenMetaverseTypes.dll"/>
  1797. <Reference name="OpenMetaverse.dll"/>
  1798. <Reference name="OpenSim" />
  1799. <Reference name="OpenSim.Framework"/>
  1800. <Reference name="OpenSim.Framework.Communications"/>
  1801. <Reference name="OpenSim.Region.Environment" />
  1802. <Reference name="OpenSim.Region.Interfaces" />
  1803. <Reference name="OpenSim.Region.Physics.Manager" />
  1804. <Reference name="OpenSim.Framework.Console"/>
  1805. <Reference name="Nini.dll" />
  1806. <Reference name="log4net.dll"/>
  1807. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1808. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1809. <Files>
  1810. <Match pattern="*.cs" recurse="true" >
  1811. <Exclude name="Tests" pattern="Tests" />
  1812. </Match>
  1813. </Files>
  1814. </Project>
  1815. <Project name="OpenSim.ApplicationPlugins.ScriptEngine" path="OpenSim/ApplicationPlugins/ScriptEngine" type="Library">
  1816. <Configuration name="Debug">
  1817. <Options>
  1818. <OutputPath>../../../bin/</OutputPath>
  1819. </Options>
  1820. </Configuration>
  1821. <Configuration name="Release">
  1822. <Options>
  1823. <OutputPath>../../../bin/</OutputPath>
  1824. </Options>
  1825. </Configuration>
  1826. <ReferencePath>../../../bin/</ReferencePath>
  1827. <Reference name="System" localCopy="false"/>
  1828. <Reference name="System.Data" localCopy="false"/>
  1829. <Reference name="System.Web" localCopy="false"/>
  1830. <Reference name="System.Xml" localCopy="false"/>
  1831. <Reference name="OpenMetaverseTypes.dll"/>
  1832. <Reference name="OpenMetaverse.dll"/>
  1833. <Reference name="OpenSim" />
  1834. <Reference name="OpenSim.Framework"/>
  1835. <Reference name="OpenSim.Framework.Communications"/>
  1836. <Reference name="OpenSim.Region.Environment" />
  1837. <Reference name="OpenSim.Region.Interfaces" />
  1838. <Reference name="OpenSim.Region.Physics.Manager" />
  1839. <Reference name="OpenSim.Framework.Console"/>
  1840. <Reference name="Nini.dll" />
  1841. <Reference name="log4net.dll"/>
  1842. <Reference name="OpenSim.ScriptEngine.Shared"/>
  1843. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1844. <Reference name="OpenSim.Region.ClientStack"/>
  1845. <Reference name="OpenSim.Framework.Servers"/>
  1846. <Files>
  1847. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  1848. <Match pattern="*.cs" recurse="true" >
  1849. <Exclude name="Tests" pattern="Tests" />
  1850. </Match>
  1851. </Files>
  1852. </Project>
  1853. <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_LSL" type="Library">
  1854. <Configuration name="Debug">
  1855. <Options>
  1856. <OutputPath>../../../../../bin/</OutputPath>
  1857. </Options>
  1858. </Configuration>
  1859. <Configuration name="Release">
  1860. <Options>
  1861. <OutputPath>../../../../../bin/</OutputPath>
  1862. </Options>
  1863. </Configuration>
  1864. <ReferencePath>../../../../../bin/</ReferencePath>
  1865. <Reference name="System" localCopy="false"/>
  1866. <Reference name="System.Data" localCopy="false"/>
  1867. <Reference name="System.Web" localCopy="false"/>
  1868. <Reference name="System.Xml" localCopy="false"/>
  1869. <Reference name="OpenMetaverseTypes.dll"/>
  1870. <Reference name="OpenMetaverse.dll"/>
  1871. <Reference name="OpenSim" />
  1872. <Reference name="OpenSim.Framework"/>
  1873. <Reference name="OpenSim.Framework.Communications"/>
  1874. <Reference name="OpenSim.Region.Environment" />
  1875. <Reference name="OpenSim.Region.Interfaces" />
  1876. <Reference name="OpenSim.Region.Physics.Manager" />
  1877. <Reference name="OpenSim.Framework.Console"/>
  1878. <Reference name="Nini.dll" />
  1879. <Reference name="log4net.dll"/>
  1880. <Reference name="OpenSim.ScriptEngine.Shared"/>
  1881. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1882. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1883. <Files>
  1884. <Match pattern="*.cs" recurse="true" >
  1885. <Exclude name="Tests" pattern="Tests" />
  1886. </Match>
  1887. </Files>
  1888. </Project>
  1889. <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL" path="OpenSim/ScriptEngine/Components/DotNetEngine/Commands_OSSL" type="Library">
  1890. <Configuration name="Debug">
  1891. <Options>
  1892. <OutputPath>../../../../../bin/</OutputPath>
  1893. </Options>
  1894. </Configuration>
  1895. <Configuration name="Release">
  1896. <Options>
  1897. <OutputPath>../../../../../bin/</OutputPath>
  1898. </Options>
  1899. </Configuration>
  1900. <ReferencePath>../../../../../bin/</ReferencePath>
  1901. <Reference name="System" localCopy="false"/>
  1902. <Reference name="System.Data" localCopy="false"/>
  1903. <Reference name="System.Web" localCopy="false"/>
  1904. <Reference name="System.Xml" localCopy="false"/>
  1905. <Reference name="OpenMetaverseTypes.dll"/>
  1906. <Reference name="OpenMetaverse.dll"/>
  1907. <Reference name="OpenSim" />
  1908. <Reference name="OpenSim.Framework"/>
  1909. <Reference name="OpenSim.Framework.Communications"/>
  1910. <Reference name="OpenSim.Region.Environment" />
  1911. <Reference name="OpenSim.Region.Interfaces" />
  1912. <Reference name="OpenSim.Region.Physics.Manager" />
  1913. <Reference name="OpenSim.Framework.Console"/>
  1914. <Reference name="Nini.dll" />
  1915. <Reference name="log4net.dll"/>
  1916. <Reference name="OpenSim.ScriptEngine.Shared"/>
  1917. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1918. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1919. <Files>
  1920. <Match pattern="*.cs" recurse="true" >
  1921. <Exclude name="Tests" pattern="Tests" />
  1922. </Match>
  1923. </Files>
  1924. </Project>
  1925. <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Compilers" path="OpenSim/ScriptEngine/Components/DotNetEngine/Compilers" type="Library">
  1926. <Configuration name="Debug">
  1927. <Options>
  1928. <OutputPath>../../../../../bin/</OutputPath>
  1929. </Options>
  1930. </Configuration>
  1931. <Configuration name="Release">
  1932. <Options>
  1933. <OutputPath>../../../../../bin/</OutputPath>
  1934. </Options>
  1935. </Configuration>
  1936. <ReferencePath>../../../../../bin/</ReferencePath>
  1937. <ReferencePath>../../../../../bin/ScriptEngines/</ReferencePath>
  1938. <Reference name="System" localCopy="false"/>
  1939. <Reference name="System.Data" localCopy="false"/>
  1940. <Reference name="System.Web" localCopy="false"/>
  1941. <Reference name="System.Xml" localCopy="false"/>
  1942. <Reference name="OpenMetaverseTypes.dll"/>
  1943. <Reference name="OpenMetaverse.dll"/>
  1944. <Reference name="OpenSim" />
  1945. <Reference name="OpenSim.Framework"/>
  1946. <Reference name="OpenSim.Framework.Communications"/>
  1947. <Reference name="OpenSim.Region.Environment" />
  1948. <Reference name="OpenSim.Region.Interfaces" />
  1949. <Reference name="OpenSim.Region.Physics.Manager" />
  1950. <Reference name="OpenSim.Framework.Console"/>
  1951. <Reference name="Nini.dll" />
  1952. <Reference name="log4net.dll"/>
  1953. <Reference name="OpenSim.ScriptEngine.Shared"/>
  1954. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1955. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1956. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1957. <Reference name="Microsoft.JScript"/>
  1958. <Files>
  1959. <Match pattern="*.cs" recurse="true" >
  1960. <Exclude name="Tests" pattern="Tests" />
  1961. </Match>
  1962. </Files>
  1963. </Project>
  1964. <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Events" path="OpenSim/ScriptEngine/Components/DotNetEngine/Events" type="Library">
  1965. <Configuration name="Debug">
  1966. <Options>
  1967. <OutputPath>../../../../../bin/</OutputPath>
  1968. </Options>
  1969. </Configuration>
  1970. <Configuration name="Release">
  1971. <Options>
  1972. <OutputPath>../../../../../bin/</OutputPath>
  1973. </Options>
  1974. </Configuration>
  1975. <ReferencePath>../../../../../bin/</ReferencePath>
  1976. <Reference name="System" localCopy="false"/>
  1977. <Reference name="System.Data" localCopy="false"/>
  1978. <Reference name="System.Web" localCopy="false"/>
  1979. <Reference name="System.Xml" localCopy="false"/>
  1980. <Reference name="OpenMetaverseTypes.dll"/>
  1981. <Reference name="OpenMetaverse.dll"/>
  1982. <Reference name="OpenSim" />
  1983. <Reference name="OpenSim.Framework"/>
  1984. <Reference name="OpenSim.Framework.Communications"/>
  1985. <Reference name="OpenSim.Region.Environment" />
  1986. <Reference name="OpenSim.Region.Interfaces" />
  1987. <Reference name="OpenSim.Region.Physics.Manager" />
  1988. <Reference name="OpenSim.Framework.Console"/>
  1989. <Reference name="Nini.dll" />
  1990. <Reference name="log4net.dll"/>
  1991. <Reference name="OpenSim.ScriptEngine.Shared"/>
  1992. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1993. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  1994. <Reference name="Microsoft.JScript"/>
  1995. <Files>
  1996. <Match pattern="*.cs" recurse="true" >
  1997. <Exclude name="Tests" pattern="Tests" />
  1998. </Match>
  1999. </Files>
  2000. </Project>
  2001. <Project name="OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler" path="OpenSim/ScriptEngine/Components/DotNetEngine/Scheduler" type="Library">
  2002. <Configuration name="Debug">
  2003. <Options>
  2004. <OutputPath>../../../../../bin/</OutputPath>
  2005. </Options>
  2006. </Configuration>
  2007. <Configuration name="Release">
  2008. <Options>
  2009. <OutputPath>../../../../../bin/</OutputPath>
  2010. </Options>
  2011. </Configuration>
  2012. <ReferencePath>../../../../../bin/</ReferencePath>
  2013. <ReferencePath>../../../../../bin/ScriptEngines/</ReferencePath>
  2014. <Reference name="System" localCopy="false"/>
  2015. <Reference name="System.Data" localCopy="false"/>
  2016. <Reference name="System.Web" localCopy="false"/>
  2017. <Reference name="System.Xml" localCopy="false"/>
  2018. <Reference name="OpenMetaverseTypes.dll"/>
  2019. <Reference name="OpenMetaverse.dll"/>
  2020. <Reference name="OpenSim" />
  2021. <Reference name="OpenSim.Framework"/>
  2022. <Reference name="OpenSim.Framework.Communications"/>
  2023. <Reference name="OpenSim.Region.Environment" />
  2024. <Reference name="OpenSim.Region.Interfaces" />
  2025. <Reference name="OpenSim.Region.Physics.Manager" />
  2026. <Reference name="OpenSim.Framework.Console"/>
  2027. <Reference name="Nini.dll" />
  2028. <Reference name="log4net.dll"/>
  2029. <Reference name="OpenSim.ScriptEngine.Shared"/>
  2030. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  2031. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  2032. <Files>
  2033. <Match pattern="*.cs" recurse="true" >
  2034. <Exclude name="Tests" pattern="Tests" />
  2035. </Match>
  2036. </Files>
  2037. </Project>
  2038. <Project name="OpenSim.ScriptEngine.Engines.DotNetEngine" path="OpenSim/ScriptEngine/Engines/DotNetEngine" type="Library">
  2039. <Configuration name="Debug">
  2040. <Options>
  2041. <OutputPath>../../../../bin/</OutputPath>
  2042. </Options>
  2043. </Configuration>
  2044. <Configuration name="Release">
  2045. <Options>
  2046. <OutputPath>../../../../bin/</OutputPath>
  2047. </Options>
  2048. </Configuration>
  2049. <ReferencePath>../../../../bin/</ReferencePath>
  2050. <ReferencePath>../../../../bin/ScriptEngines/</ReferencePath>
  2051. <Reference name="System" localCopy="false"/>
  2052. <Reference name="System.Data" localCopy="false"/>
  2053. <Reference name="System.Web" localCopy="false"/>
  2054. <Reference name="System.Xml" localCopy="false"/>
  2055. <Reference name="OpenMetaverseTypes.dll"/>
  2056. <Reference name="OpenMetaverse.dll"/>
  2057. <Reference name="OpenSim" />
  2058. <Reference name="OpenSim.Framework"/>
  2059. <Reference name="OpenSim.Framework.Communications"/>
  2060. <Reference name="OpenSim.Region.Environment" />
  2061. <Reference name="OpenSim.Region.Interfaces" />
  2062. <Reference name="OpenSim.Region.Physics.Manager" />
  2063. <Reference name="OpenSim.Framework.Console"/>
  2064. <Reference name="Nini.dll" />
  2065. <Reference name="log4net.dll"/>
  2066. <Reference name="OpenSim.ApplicationPlugins.ScriptEngine"/>
  2067. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  2068. <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Scheduler"/>
  2069. <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Events"/>
  2070. <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_OSSL"/>
  2071. <Reference name="OpenSim.ScriptEngine.Components.DotNetEngine.Commands_LSL"/>
  2072. <Reference name="OpenSim.ScriptEngine.Shared"/>
  2073. <Reference name="OpenSim.ScriptEngine.Shared.Script"/>
  2074. <Files>
  2075. <Match pattern="*.cs" recurse="true" >
  2076. <Exclude name="Tests" pattern="Tests" />
  2077. </Match>
  2078. </Files>
  2079. </Project>
  2080. <Project name="OpenSim.Region.UserStatistics" path="OpenSim/Region/UserStatistics" type="Library">
  2081. <Configuration name="Debug">
  2082. <Options>
  2083. <OutputPath>../../../bin/</OutputPath>
  2084. </Options>
  2085. </Configuration>
  2086. <Configuration name="Release">
  2087. <Options>
  2088. <OutputPath>../../../bin/</OutputPath>
  2089. </Options>
  2090. </Configuration>
  2091. <ReferencePath>../../../bin/</ReferencePath>
  2092. <Reference name="System" localCopy="false"/>
  2093. <Reference name="System.Data"/>
  2094. <Reference name="System.Xml"/>
  2095. <Reference name="System.Drawing"/>
  2096. <Reference name="System.Runtime.Remoting"/>
  2097. <Reference name="System.Web"/>
  2098. <Reference name="OpenMetaverseTypes.dll"/>
  2099. <Reference name="OpenMetaverse.StructuredData.dll"/>
  2100. <Reference name="OpenMetaverse.dll"/>
  2101. <Reference name="OpenSim.Framework"/>
  2102. <Reference name="OpenSim.Data" />
  2103. <Reference name="OpenSim.Region.Interfaces" />
  2104. <Reference name="OpenSim.Region.Environment" />
  2105. <Reference name="OpenSim.Framework.Console"/>
  2106. <Reference name="OpenSim.Framework.Servers"/>
  2107. <Reference name="OpenSim.Framework.Statistics"/>
  2108. <Reference name="OpenSim.Region.Physics.Manager"/>
  2109. <Reference name="OpenSim.Grid.AssetServer"/>
  2110. <Reference name="Mono.Data.SqliteClient"/>
  2111. <!-- For scripting in funny languages by default -->
  2112. <Reference name="Microsoft.JScript"/>
  2113. <Reference name="XMLRPC.dll"/>
  2114. <Reference name="OpenSim.Framework.Communications"/>
  2115. <Reference name="OpenSim.Data.Base"/>
  2116. <Reference name="Nini.dll" />
  2117. <Reference name="log4net.dll"/>
  2118. <Reference name="DotNetOpenMail.dll"/>
  2119. <Files>
  2120. <Match pattern="*.cs" recurse="true">
  2121. <Exclude name="Tests" pattern="Tests" />
  2122. </Match>
  2123. </Files>
  2124. </Project>
  2125. <!-- Tools -->
  2126. <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe">
  2127. <Configuration name="Debug">
  2128. <Options>
  2129. <OutputPath>../../../bin/</OutputPath>
  2130. </Options>
  2131. </Configuration>
  2132. <Configuration name="Release">
  2133. <Options>
  2134. <OutputPath>../../../bin/</OutputPath>
  2135. </Options>
  2136. </Configuration>
  2137. <ReferencePath>../../../bin/</ReferencePath>
  2138. <Reference name="System" localCopy="false"/>
  2139. <Reference name="OpenMetaverseTypes.dll"/>
  2140. <Reference name="OpenMetaverse.dll"/>
  2141. <Reference name="OpenSim.Framework"/>
  2142. <Reference name="OpenSim.Framework.Console"/>
  2143. <Reference name="Nini.dll" />
  2144. <Reference name="log4net.dll"/>
  2145. <Files>
  2146. <Match pattern="*.cs" recurse="true"/>
  2147. </Files>
  2148. </Project>
  2149. <Project name="OpenSim.ApplicationPlugins.RegionProxy" path="ThirdParty/3Di/RegionProxy" type="Library">
  2150. <Configuration name="Debug">
  2151. <Options>
  2152. <OutputPath>../../../bin/</OutputPath>
  2153. </Options>
  2154. </Configuration>
  2155. <Configuration name="Release">
  2156. <Options>
  2157. <OutputPath>../../../bin/</OutputPath>
  2158. </Options>
  2159. </Configuration>
  2160. <ReferencePath>../../../bin/</ReferencePath>
  2161. <Reference name="log4net.dll" />
  2162. <Reference name="Mono.Addins.dll" />
  2163. <Reference name="System"/>
  2164. <Reference name="System.Xml"/>
  2165. <Reference name="XMLRPC.dll"/>
  2166. <Reference name="Nini.dll" />
  2167. <Reference name="OpenSim"/>
  2168. <Reference name="OpenSim.Framework"/>
  2169. <Reference name="OpenSim.Data"/>
  2170. <Reference name="OpenSim.Framework.Servers"/>
  2171. <Reference name="OpenSim.Framework.Console"/>
  2172. <Reference name="OpenSim.Region.ClientStack"/>
  2173. <Files>
  2174. <Match pattern="*.cs" recurse="true"/>
  2175. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  2176. </Files>
  2177. </Project>
  2178. <Project name="OpenSim.ApplicationPlugins.LoadBalancer" path="ThirdParty/3Di/LoadBalancer" type="Library">
  2179. <Configuration name="Debug">
  2180. <Options>
  2181. <OutputPath>../../../bin/</OutputPath>
  2182. </Options>
  2183. </Configuration>
  2184. <Configuration name="Release">
  2185. <Options>
  2186. <OutputPath>../../../bin/</OutputPath>
  2187. </Options>
  2188. </Configuration>
  2189. <ReferencePath>../../../bin/</ReferencePath>
  2190. <Reference name="log4net.dll" />
  2191. <Reference name="Mono.Addins.dll" />
  2192. <Reference name="System"/>
  2193. <Reference name="System.Xml"/>
  2194. <Reference name="XMLRPC.dll"/>
  2195. <Reference name="Nini.dll" />
  2196. <Reference name="OpenSim"/>
  2197. <Reference name="OpenSim.Framework"/>
  2198. <Reference name="OpenSim.Data"/>
  2199. <Reference name="OpenSim.Framework.Servers"/>
  2200. <Reference name="OpenSim.Framework.Statistics"/>
  2201. <Reference name="OpenSim.Framework.Console"/>
  2202. <Reference name="OpenSim.Region.Environment"/>
  2203. <Reference name="OpenSim.Region.ClientStack"/>
  2204. <Reference name="OpenSim.Region.ClientStack.LindenUDP"/>
  2205. <Reference name="OpenSim.Region.Physics.Manager"/>
  2206. <Reference name="OpenMetaverseTypes.dll"/>
  2207. <Reference name="OpenMetaverse.dll"/>
  2208. <Files>
  2209. <Match pattern="*.cs" recurse="true"/>
  2210. <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/>
  2211. </Files>
  2212. </Project>
  2213. <!-- Test Suite -->
  2214. <Project name="OpenSim.TestSuite" path="OpenSim/TestSuite" type="Exe">
  2215. <Configuration name="Debug">
  2216. <Options>
  2217. <OutputPath>../../bin/</OutputPath>
  2218. </Options>
  2219. </Configuration>
  2220. <Configuration name="Release">
  2221. <Options>
  2222. <OutputPath>../../bin/</OutputPath>
  2223. </Options>
  2224. </Configuration>
  2225. <ReferencePath>../../bin/</ReferencePath>
  2226. <Reference name="System" localCopy="false"/>
  2227. <Reference name="OpenMetaverseTypes.dll"/>
  2228. <Reference name="OpenMetaverse.dll"/>
  2229. <Reference name="OpenSim.Framework"/>
  2230. <Reference name="OpenSim.Framework.Console"/>
  2231. <Reference name="Nini.dll" />
  2232. <Reference name="log4net.dll"/>
  2233. <Files>
  2234. <Match pattern="*.cs" recurse="true"/>
  2235. </Files>
  2236. </Project>
  2237. <!-- Test assemblies -->
  2238. <Project name="OpenSim.Tests.Common" path="OpenSim/Tests/Common" type="Library">
  2239. <Configuration name="Debug">
  2240. <Options>
  2241. <OutputPath>../../../bin/</OutputPath>
  2242. </Options>
  2243. </Configuration>
  2244. <Configuration name="Release">
  2245. <Options>
  2246. <OutputPath>../../../bin/</OutputPath>
  2247. </Options>
  2248. </Configuration>
  2249. <ReferencePath>../../../bin/</ReferencePath>
  2250. <Reference name="System"/>
  2251. <Reference name="System.Drawing"/>
  2252. <Reference name="System.Xml"/>
  2253. <Reference name="System.Data"/>
  2254. <Reference name="log4net.dll"/>
  2255. <Reference name="Nini.dll" />
  2256. <Reference name="nunit.framework.dll" />
  2257. <Reference name="OpenMetaverse.dll"/>
  2258. <Reference name="OpenMetaverseTypes.dll"/>
  2259. <Reference name="OpenSim.Framework"/>
  2260. <Reference name="OpenSim.Framework.Communications"/>
  2261. <Reference name="OpenSim.Framework.Servers"/>
  2262. <Reference name="OpenSim.Region.Communications.Local"/>
  2263. <Reference name="OpenSim.Region.Environment"/>
  2264. <Reference name="OpenSim.Region.Physics.Manager"/>
  2265. <Files>
  2266. <Match pattern="*.cs" recurse="true"/>
  2267. </Files>
  2268. </Project>
  2269. <Project name="OpenSim.Data.Tests" path="OpenSim/Data/Tests" type="Library">
  2270. <Configuration name="Debug">
  2271. <Options>
  2272. <OutputPath>../../../bin/</OutputPath>
  2273. </Options>
  2274. </Configuration>
  2275. <Configuration name="Release">
  2276. <Options>
  2277. <OutputPath>../../../bin/</OutputPath>
  2278. </Options>
  2279. </Configuration>
  2280. <ReferencePath>../../../bin/</ReferencePath>
  2281. <Reference name="System" localCopy="false"/>
  2282. <Reference name="System.Xml"/>
  2283. <Reference name="System.Drawing"/>
  2284. <Reference name="System.Data"/>
  2285. <Reference name="OpenMetaverse.dll"/>
  2286. <Reference name="OpenMetaverseTypes.dll"/>
  2287. <Reference name="OpenSim.Framework"/>
  2288. <Reference name="OpenSim.Data"/>
  2289. <Reference name="OpenSim.Region.Environment"/>
  2290. <Reference name="log4net.dll"/>
  2291. <Reference name="Mono.Addins.dll" />
  2292. <Reference name="nunit.framework.dll" />
  2293. <Files>
  2294. <Match pattern="*.cs" recurse="true"/>
  2295. </Files>
  2296. </Project>
  2297. <Project name="OpenSim.Data.MySQL.Tests" path="OpenSim/Data/MySQL/Tests" type="Library">
  2298. <Configuration name="Debug">
  2299. <Options>
  2300. <OutputPath>../../../../bin/</OutputPath>
  2301. </Options>
  2302. </Configuration>
  2303. <Configuration name="Release">
  2304. <Options>
  2305. <OutputPath>../../../../bin/</OutputPath>
  2306. </Options>
  2307. </Configuration>
  2308. <ReferencePath>../../../../bin/</ReferencePath>
  2309. <Reference name="System" localCopy="false"/>
  2310. <Reference name="System.Xml"/>
  2311. <Reference name="System.Data"/>
  2312. <Reference name="System.Drawing"/>
  2313. <Reference name="OpenSim.Framework"/>
  2314. <Reference name="OpenSim.Data"/>
  2315. <Reference name="OpenSim.Data.MapperFactory"/>
  2316. <Reference name="OpenSim.Data.Base"/>
  2317. <Reference name="OpenSim.Data.MySQLMapper"/>
  2318. <Reference name="OpenMetaverseTypes.dll"/>
  2319. <Reference name="OpenMetaverse.dll"/>
  2320. <Reference name="MySql.Data.dll"/>
  2321. <Reference name="OpenSim.Data.Tests"/>
  2322. <Reference name="OpenSim.Data.MySQL"/>
  2323. <Reference name="OpenSim.Framework.Console"/>
  2324. <Reference name="OpenSim.Region.Environment"/>
  2325. <Reference name="log4net.dll"/>
  2326. <Reference name="nunit.framework.dll" />
  2327. <Reference name="Mono.Addins.dll" />
  2328. <Files>
  2329. <Match pattern="*.cs" recurse="true"/>
  2330. </Files>
  2331. </Project>
  2332. <Project name="OpenSim.Data.NHibernate.Tests" path="OpenSim/Data/NHibernate/Tests" type="Library">
  2333. <Configuration name="Debug">
  2334. <Options>
  2335. <OutputPath>../../../../bin/</OutputPath>
  2336. </Options>
  2337. </Configuration>
  2338. <Configuration name="Release">
  2339. <Options>
  2340. <OutputPath>../../../../bin/</OutputPath>
  2341. </Options>
  2342. </Configuration>
  2343. <ReferencePath>../../../../bin/</ReferencePath>
  2344. <Reference name="System" localCopy="false"/>
  2345. <Reference name="System.Xml"/>
  2346. <Reference name="System.Data"/>
  2347. <Reference name="System.Drawing"/>
  2348. <Reference name="OpenSim.Framework"/>
  2349. <Reference name="OpenSim.Data"/>
  2350. <Reference name="OpenSim.Data.MapperFactory"/>
  2351. <Reference name="OpenSim.Data.Base"/>
  2352. <Reference name="OpenSim.Data.NHibernate"/>
  2353. <Reference name="OpenSim.Data.Tests"/>
  2354. <Reference name="OpenSim.Framework.Console"/>
  2355. <Reference name="OpenSim.Region.Environment"/>
  2356. <Reference name="OpenMetaverseTypes.dll"/>
  2357. <Reference name="OpenMetaverse.dll"/>
  2358. <Reference name="MySql.Data.dll"/>
  2359. <Reference name="Npgsql.dll"/>
  2360. <Reference name="System.Data.SQLite.dll" />
  2361. <Reference name="log4net.dll"/>
  2362. <Reference name="nunit.framework.dll" />
  2363. <Reference name="NHibernate.dll"/>
  2364. <Reference name="Mono.Addins.dll" />
  2365. <Files>
  2366. <Match pattern="*.cs" recurse="true"/>
  2367. </Files>
  2368. </Project>
  2369. <Project name="OpenSim.Data.SQLite.Tests" path="OpenSim/Data/SQLite/Tests" type="Library">
  2370. <Configuration name="Debug">
  2371. <Options>
  2372. <OutputPath>../../../../bin/</OutputPath>
  2373. </Options>
  2374. </Configuration>
  2375. <Configuration name="Release">
  2376. <Options>
  2377. <OutputPath>../../../../bin/</OutputPath>
  2378. </Options>
  2379. </Configuration>
  2380. <ReferencePath>../../../../bin/</ReferencePath>
  2381. <Reference name="System" localCopy="false"/>
  2382. <Reference name="System.Xml"/>
  2383. <Reference name="System.Data"/>
  2384. <Reference name="System.Data.SQLite.dll"/>
  2385. <Reference name="OpenSim.Data"/>
  2386. <Reference name="OpenSim.Data.Tests"/>
  2387. <Reference name="OpenSim.Data.SQLite" />
  2388. <Reference name="System.Drawing"/>
  2389. <Reference name="OpenSim.Framework"/>
  2390. <Reference name="OpenSim.Framework.Console"/>
  2391. <Reference name="OpenSim.Region.Environment"/>
  2392. <Reference name="OpenMetaverseTypes.dll"/>
  2393. <Reference name="OpenMetaverse.dll"/>
  2394. <Reference name="Mono.Data.SqliteClient"/>
  2395. <Reference name="Mono.Addins.dll" />
  2396. <Reference name="log4net.dll"/>
  2397. <Reference name="nunit.framework.dll" />
  2398. <Files>
  2399. <Match pattern="*.cs" recurse="true"/>
  2400. </Files>
  2401. </Project>
  2402. <Project name="OpenSim.Framework.Tests" path="OpenSim/Framework/Tests" type="Library">
  2403. <Configuration name="Debug">
  2404. <Options>
  2405. <OutputPath>../../../bin/</OutputPath>
  2406. </Options>
  2407. </Configuration>
  2408. <Configuration name="Release">
  2409. <Options>
  2410. <OutputPath>../../../bin/</OutputPath>
  2411. </Options>
  2412. </Configuration>
  2413. <ReferencePath>../../../bin/</ReferencePath>
  2414. <Reference name="System"/>
  2415. <Reference name="System.Xml"/>
  2416. <Reference name="System.Data"/>
  2417. <Reference name="OpenMetaverseTypes.dll"/>
  2418. <Reference name="XMLRPC.dll"/>
  2419. <Reference name="OpenSim.Framework.Console"/>
  2420. <Reference name="OpenSim.Framework"/>
  2421. <Reference name="OpenSim.Tests.Common"/>
  2422. <Reference name="Nini.dll" />
  2423. <Reference name="nunit.framework.dll" />
  2424. <Files>
  2425. <Match pattern="*.cs" recurse="false"/>
  2426. </Files>
  2427. </Project>
  2428. <Project name="OpenSim.Framework.Servers.Tests" path="OpenSim/Framework/Servers/Tests" type="Library">
  2429. <Configuration name="Debug">
  2430. <Options>
  2431. <OutputPath>../../../../bin/</OutputPath>
  2432. </Options>
  2433. </Configuration>
  2434. <Configuration name="Release">
  2435. <Options>
  2436. <OutputPath>../../../../bin/</OutputPath>
  2437. </Options>
  2438. </Configuration>
  2439. <ReferencePath>../../../../bin/</ReferencePath>
  2440. <Reference name="System"/>
  2441. <Reference name="OpenSim.Framework"/>
  2442. <Reference name="OpenSim.Framework.Servers"/>
  2443. <Reference name="log4net.dll"/>
  2444. <Reference name="HttpServer.dll"/>
  2445. <Reference name="nunit.framework.dll" />
  2446. <Files>
  2447. <Match pattern="*.cs" recurse="true">
  2448. </Match>
  2449. </Files>
  2450. </Project>
  2451. <Project name="OpenSim.Framework.Communications.Tests" path="OpenSim/Framework/Communications/Tests" type="Library">
  2452. <Configuration name="Debug">
  2453. <Options>
  2454. <OutputPath>../../../../bin/</OutputPath>
  2455. </Options>
  2456. </Configuration>
  2457. <Configuration name="Release">
  2458. <Options>
  2459. <OutputPath>../../../../bin/</OutputPath>
  2460. </Options>
  2461. </Configuration>
  2462. <ReferencePath>../../../../bin/</ReferencePath>
  2463. <Reference name="System"/>
  2464. <Reference name="System.Xml"/>
  2465. <Reference name="log4net.dll"/>
  2466. <Reference name="Nini.dll" />
  2467. <Reference name="nunit.framework.dll" />
  2468. <Reference name="XMLRPC.dll"/>
  2469. <Reference name="OpenMetaverse.dll"/>
  2470. <Reference name="OpenMetaverseTypes.dll"/>
  2471. <Reference name="OpenSim.Framework"/>
  2472. <Reference name="OpenSim.Framework.Communications"/>
  2473. <Reference name="OpenSim.Region.Communications.Local"/>
  2474. <Reference name="OpenSim.Tests.Common"/>
  2475. <Files>
  2476. <Match pattern="*.cs" recurse="true"/>
  2477. </Files>
  2478. </Project>
  2479. <Project name="OpenSim.Region.Environment.Tests" path="OpenSim/Region/Environment" type="Library">
  2480. <Configuration name="Debug">
  2481. <Options>
  2482. <OutputPath>../../../bin/</OutputPath>
  2483. </Options>
  2484. </Configuration>
  2485. <Configuration name="Release">
  2486. <Options>
  2487. <OutputPath>../../../bin/</OutputPath>
  2488. </Options>
  2489. </Configuration>
  2490. <ReferencePath>../../../bin/</ReferencePath>
  2491. <Reference name="System" localCopy="false"/>
  2492. <Reference name="System.Xml"/>
  2493. <Reference name="System.Drawing"/>
  2494. <Reference name="System.Runtime.Remoting"/>
  2495. <Reference name="OpenMetaverseTypes.dll"/>
  2496. <Reference name="OpenMetaverse.dll"/>
  2497. <Reference name="OpenSim.Data"/>
  2498. <Reference name="OpenSim.Framework"/>
  2499. <Reference name="OpenSim.Framework.Communications"/>
  2500. <Reference name="OpenSim.Framework.Console"/>
  2501. <Reference name="OpenSim.Framework.Servers"/>
  2502. <Reference name="OpenSim.Framework.Statistics"/>
  2503. <Reference name="OpenSim.Region.Communications.Local"/>
  2504. <Reference name="OpenSim.Region.Interfaces"/>
  2505. <Reference name="OpenSim.Region.Environment"/>
  2506. <Reference name="OpenSim.Region.Physics.Manager"/>
  2507. <!-- Unit tests -->
  2508. <!-- <Reference name="OpenSim.Tests.Common"/> -->
  2509. <Reference name="OpenSim.Tests.Common"/>
  2510. <Reference name="Nini.dll"/>
  2511. <Reference name="nunit.framework.dll"/>
  2512. <!-- For scripting in funny languages by default -->
  2513. <Reference name="Microsoft.JScript"/>
  2514. <Reference name="XMLRPC.dll"/>
  2515. <Reference name="OpenSim.Framework.Communications"/>
  2516. <Reference name="OpenSim.Data.Base"/>
  2517. <Reference name="Nini.dll" />
  2518. <Reference name="log4net.dll"/>
  2519. <Reference name="DotNetOpenMail.dll"/>
  2520. <!--
  2521. TODO: this is kind of lame, we basically build a duplicate
  2522. assembly but with tests added in, just so that we don't
  2523. need to hard code in a bunch of Test directories here. If
  2524. pattern="Tests/*.cs" worked, we wouldn't need this.
  2525. -->
  2526. <Files>
  2527. <!-- SADLY the way this works means you need to keep adding these paths -->
  2528. <Match path="Modules/World/Terrain/Tests" pattern="*.cs" recurse="true" />
  2529. <Match path="Modules/World/Archiver/Tests" pattern="*.cs" recurse="true" />
  2530. <Match path="Modules/Agent/TextureSender/Tests" pattern="*.cs" recurse="true" />
  2531. <Match path="Scenes/Tests" pattern="*.cs" recurse="false" />
  2532. </Files>
  2533. </Project>
  2534. <Project name="OpenSim.Region.ClientStack.LindenUDP.Tests" path="OpenSim/Region/ClientStack/LindenUDP/Tests" type="Library">
  2535. <Configuration name="Debug">
  2536. <Options>
  2537. <OutputPath>../../../../../bin/</OutputPath>
  2538. </Options>
  2539. </Configuration>
  2540. <Configuration name="Release">
  2541. <Options>
  2542. <OutputPath>../../../../../bin/</OutputPath>
  2543. </Options>
  2544. </Configuration>
  2545. <ReferencePath>../../../../../bin/</ReferencePath>
  2546. <Reference name="System"/>
  2547. <Reference name="System.Xml"/>
  2548. <Reference name="log4net.dll"/>
  2549. <Reference name="Nini.dll" />
  2550. <Reference name="nunit.framework.dll" />
  2551. <Reference name="OpenMetaverse.dll"/>
  2552. <Reference name="OpenMetaverseTypes.dll"/>
  2553. <Reference name="OpenSim.Framework"/>
  2554. <Reference name="OpenSim.Framework.Communications"/>
  2555. <Reference name="OpenSim.Framework.Statistics"/>
  2556. <Reference name="OpenSim.Region.ClientStack"/>
  2557. <Reference name="OpenSim.Region.ClientStack.LindenUDP"/>
  2558. <Reference name="OpenSim.Region.Environment"/>
  2559. <Reference name="OpenSim.Tests.Common"/>
  2560. <Files>
  2561. <Match pattern="*.cs" recurse="false"/>
  2562. </Files>
  2563. </Project>
  2564. <Project name="OpenSim.Region.ScriptEngine.Shared.Tests" path="OpenSim/Region/ScriptEngine/Shared/Tests" type="Library">
  2565. <Configuration name="Debug">
  2566. <Options>
  2567. <OutputPath>../../../../../bin/</OutputPath>
  2568. </Options>
  2569. </Configuration>
  2570. <Configuration name="Release">
  2571. <Options>
  2572. <OutputPath>../../../../../bin/</OutputPath>
  2573. </Options>
  2574. </Configuration>
  2575. <ReferencePath>../../../../../bin/</ReferencePath>
  2576. <Reference name="System" localCopy="false"/>
  2577. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  2578. <Reference name="OpenSim.Tests.Common"/>
  2579. <Reference name="nunit.framework.dll" />
  2580. <Files>
  2581. <Match pattern="*.cs" recurse="false"/>
  2582. </Files>
  2583. </Project>
  2584. <Project name="OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests" path="OpenSim/Region/ScriptEngine/Shared/CodeTools/Tests" type="Library">
  2585. <Configuration name="Debug">
  2586. <Options>
  2587. <OutputPath>../../../../../../bin/</OutputPath>
  2588. </Options>
  2589. </Configuration>
  2590. <Configuration name="Release">
  2591. <Options>
  2592. <OutputPath>../../../../../../bin/</OutputPath>
  2593. </Options>
  2594. </Configuration>
  2595. <ReferencePath>../../../../../../bin/</ReferencePath>
  2596. <Reference name="System" localCopy="false"/>
  2597. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  2598. <Reference name="nunit.framework.dll" />
  2599. <Reference name="Tools.dll" />
  2600. <Files>
  2601. <Match pattern="*.cs" recurse="false"/>
  2602. </Files>
  2603. </Project>
  2604. <!-- /////////////////// DO NOT EDIT THE BELOW 6 LINES!!!! //////////// -->
  2605. <!-- FORGE MODULE INSERT -->
  2606. <!-- /////////////////// END OF INSERTION ///////////////////////////// -->
  2607. </Solution>
  2608. <!-- Prebuild tool -->
  2609. <Solution name="Prebuild" path="Prebuild/" >
  2610. <Configuration name="Debug">
  2611. <Options>
  2612. <CompilerDefines>DEBUG;TRACE</CompilerDefines>
  2613. <OptimizeCode>false</OptimizeCode>
  2614. <OutputPath>bin/Debug</OutputPath>
  2615. <DebugInformation>true</DebugInformation>
  2616. <SuppressWarnings>1595</SuppressWarnings>
  2617. </Options>
  2618. </Configuration>
  2619. <Configuration name="Release">
  2620. <Options>
  2621. <CompilerDefines>TRACE</CompilerDefines>
  2622. <OutputPath>bin/Release</OutputPath>
  2623. <OptimizeCode>true</OptimizeCode>
  2624. <DebugInformation>false</DebugInformation>
  2625. <SuppressWarnings>1595</SuppressWarnings>
  2626. </Options>
  2627. </Configuration>
  2628. <Project name="Prebuild" path="src/" language="C#" assemblyName="Prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild">
  2629. <Configuration name="Debug">
  2630. <Options>
  2631. <CompilerDefines>DEBUG;TRACE</CompilerDefines>
  2632. <OptimizeCode>false</OptimizeCode>
  2633. <OutputPath>..\..\bin\</OutputPath>
  2634. <DebugInformation>true</DebugInformation>
  2635. <KeyFile>Prebuild.snk</KeyFile>
  2636. <SuppressWarnings>1595</SuppressWarnings>
  2637. </Options>
  2638. </Configuration>
  2639. <Configuration name="Release">
  2640. <Options>
  2641. <CompilerDefines>TRACE</CompilerDefines>
  2642. <OutputPath>..\..\bin\</OutputPath>
  2643. <OptimizeCode>true</OptimizeCode>
  2644. <DebugInformation>false</DebugInformation>
  2645. <KeyFile>Prebuild.snk</KeyFile>
  2646. <SuppressWarnings>1595</SuppressWarnings>
  2647. </Options>
  2648. </Configuration>
  2649. <ReferencePath>../../bin/</ReferencePath>
  2650. <Reference name="System.EnterpriseServices" />
  2651. <Reference name="System.Xml" />
  2652. <Reference name="System" />
  2653. <Files>
  2654. <Match pattern="App.ico" buildAction="EmbeddedResource"/>
  2655. <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/>
  2656. <Match pattern="*.cs" recurse="true"/>
  2657. </Files>
  2658. </Project>
  2659. </Solution>
  2660. </Prebuild>