prebuild.xml 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  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="libsecondlife.dll"/>
  89. <Reference name="XMLRPC.dll"/>
  90. <Reference name="OpenSim.Framework.Console"/>
  91. <Reference name="Nini.dll" />
  92. <Reference name="log4net.dll"/>
  93. <Reference name="Mono.Addins.dll" />
  94. <Files>
  95. <Match pattern="*.cs" recurse="false"/>
  96. </Files>
  97. </Project>
  98. <Project name="OpenSim.Tests.Common" path="OpenSim/Tests/Common" type="Library">
  99. <Configuration name="Debug">
  100. <Options>
  101. <OutputPath>../../../bin/</OutputPath>
  102. </Options>
  103. </Configuration>
  104. <Configuration name="Release">
  105. <Options>
  106. <OutputPath>../../../bin/</OutputPath>
  107. </Options>
  108. </Configuration>
  109. <ReferencePath>../../../bin/</ReferencePath>
  110. <Reference name="System"/>
  111. <Reference name="System.Xml"/>
  112. <Reference name="System.Data"/>
  113. <Reference name="nunit.framework.dll" />
  114. <Reference name="libsecondlife.dll"/>
  115. <Files>
  116. <Match pattern="*.cs" recurse="false"/>
  117. </Files>
  118. </Project>
  119. <Project name="OpenSim.Framework.Tests" path="OpenSim/Tests/OpenSim/Framework" type="Library">
  120. <Configuration name="Debug">
  121. <Options>
  122. <OutputPath>../../../../bin/</OutputPath>
  123. </Options>
  124. </Configuration>
  125. <Configuration name="Release">
  126. <Options>
  127. <OutputPath>../../../../bin/</OutputPath>
  128. </Options>
  129. </Configuration>
  130. <ReferencePath>../../../../bin/</ReferencePath>
  131. <Reference name="System"/>
  132. <Reference name="System.Xml"/>
  133. <Reference name="System.Data"/>
  134. <Reference name="libsecondlife.dll"/>
  135. <Reference name="XMLRPC.dll"/>
  136. <Reference name="OpenSim.Framework.Console"/>
  137. <Reference name="OpenSim.Framework"/>
  138. <Reference name="OpenSim.Tests.Common"/>
  139. <Reference name="Nini.dll" />
  140. <Reference name="nunit.framework.dll" />
  141. <Files>
  142. <Match pattern="*.cs" recurse="false"/>
  143. </Files>
  144. </Project>
  145. <Project name="OpenSim.Framework.Statistics" path="OpenSim/Framework/Statistics" type="Library">
  146. <Configuration name="Debug">
  147. <Options>
  148. <OutputPath>../../../bin/</OutputPath>
  149. </Options>
  150. </Configuration>
  151. <Configuration name="Release">
  152. <Options>
  153. <OutputPath>../../../bin/</OutputPath>
  154. </Options>
  155. </Configuration>
  156. <ReferencePath>../../../bin/</ReferencePath>
  157. <Reference name="System"/>
  158. <Reference name="libsecondlife.dll"/>
  159. <Reference name="OpenSim.Framework"/>
  160. <Files>
  161. <Match pattern="*.cs" recurse="true"/>
  162. </Files>
  163. </Project>
  164. <Project name="OpenSim.Data.Base" path="OpenSim/Data/Base" type="Library">
  165. <Configuration name="Debug">
  166. <Options>
  167. <OutputPath>../../../bin/</OutputPath>
  168. </Options>
  169. </Configuration>
  170. <Configuration name="Release">
  171. <Options>
  172. <OutputPath>../../../bin/</OutputPath>
  173. </Options>
  174. </Configuration>
  175. <ReferencePath>../../../bin/</ReferencePath>
  176. <Reference name="System" localCopy="false"/>
  177. <Reference name="System.Data"/>
  178. <Reference name="OpenSim.Framework"/>
  179. <!-- needed for LLUUID types -->
  180. <Reference name="libsecondlife.dll"/>
  181. <Files>
  182. <Match pattern="*.cs" recurse="true"/>
  183. </Files>
  184. </Project>
  185. <Project name="OpenSim.Data" path="OpenSim/Data" type="Library">
  186. <Configuration name="Debug">
  187. <Options>
  188. <OutputPath>../../bin/</OutputPath>
  189. </Options>
  190. </Configuration>
  191. <Configuration name="Release">
  192. <Options>
  193. <OutputPath>../../bin/</OutputPath>
  194. </Options>
  195. </Configuration>
  196. <ReferencePath>../../bin/</ReferencePath>
  197. <Reference name="System" localCopy="false"/>
  198. <Reference name="System.Xml"/>
  199. <Reference name="System.Data"/>
  200. <Reference name="XMLRPC.dll"/>
  201. <Reference name="libsecondlife.dll"/>
  202. <Reference name="OpenSim.Framework"/>
  203. <Reference name="OpenSim.Data.Base"/>
  204. <Reference name="log4net.dll"/>
  205. <Files>
  206. <Match pattern="*.cs" recurse="false"/>
  207. <Match pattern="Properties/*.cs" recurse="false"/>
  208. </Files>
  209. </Project>
  210. <Project name="OpenSim.Data.MySQLMapper" path="OpenSim/Data/MySQLMapper" type="Library">
  211. <Configuration name="Debug">
  212. <Options>
  213. <OutputPath>../../../bin/</OutputPath>
  214. </Options>
  215. </Configuration>
  216. <Configuration name="Release">
  217. <Options>
  218. <OutputPath>../../../bin/</OutputPath>
  219. </Options>
  220. </Configuration>
  221. <ReferencePath>../../../bin/</ReferencePath>
  222. <Reference name="System" localCopy="false"/>
  223. <Reference name="System.Xml"/>
  224. <Reference name="System.Data"/>
  225. <Reference name="OpenSim.Framework"/>
  226. <Reference name="OpenSim.Data"/>
  227. <Reference name="OpenSim.Data.Base"/>
  228. <Reference name="libsecondlife.dll"/>
  229. <Reference name="MySql.Data.dll"/>
  230. <Reference name="OpenSim.Framework.Console"/>
  231. <Reference name="log4net.dll"/>
  232. <Files>
  233. <Match pattern="*.cs" recurse="true"/>
  234. </Files>
  235. </Project>
  236. <Project name="OpenSim.Data.MSSQLMapper" path="OpenSim/Data/MSSQLMapper" type="Library">
  237. <Configuration name="Debug">
  238. <Options>
  239. <OutputPath>../../../bin/</OutputPath>
  240. </Options>
  241. </Configuration>
  242. <Configuration name="Release">
  243. <Options>
  244. <OutputPath>../../../bin/</OutputPath>
  245. </Options>
  246. </Configuration>
  247. <ReferencePath>../../../bin/</ReferencePath>
  248. <Reference name="System" localCopy="false"/>
  249. <Reference name="System.Xml"/>
  250. <Reference name="System.Data"/>
  251. <Reference name="OpenSim.Framework"/>
  252. <Reference name="OpenSim.Data"/>
  253. <Reference name="OpenSim.Data.Base"/>
  254. <Reference name="libsecondlife.dll"/>
  255. <Reference name="OpenSim.Framework.Console"/>
  256. <Reference name="log4net.dll"/>
  257. <Files>
  258. <Match pattern="*.cs" recurse="true"/>
  259. </Files>
  260. </Project>
  261. <Project name="OpenSim.Data.MapperFactory" path="OpenSim/Data/MapperFactory" type="Library">
  262. <Configuration name="Debug">
  263. <Options>
  264. <OutputPath>../../../bin/</OutputPath>
  265. </Options>
  266. </Configuration>
  267. <Configuration name="Release">
  268. <Options>
  269. <OutputPath>../../../bin/</OutputPath>
  270. </Options>
  271. </Configuration>
  272. <ReferencePath>../../../bin/</ReferencePath>
  273. <Reference name="System" localCopy="false"/>
  274. <Reference name="System.Xml"/>
  275. <Reference name="System.Data"/>
  276. <Reference name="OpenSim.Framework"/>
  277. <Reference name="OpenSim.Data"/>
  278. <Reference name="OpenSim.Data.Base"/>
  279. <Reference name="OpenSim.Data.MySQLMapper"/>
  280. <Reference name="OpenSim.Data.MSSQLMapper"/>
  281. <Files>
  282. <Match pattern="*.cs" recurse="true"/>
  283. </Files>
  284. </Project>
  285. <Project name="OpenSim.Framework.Configuration.XML" path="OpenSim/Framework/Configuration/XML" type="Library">
  286. <Configuration name="Debug">
  287. <Options>
  288. <OutputPath>../../../../bin/</OutputPath>
  289. </Options>
  290. </Configuration>
  291. <Configuration name="Release">
  292. <Options>
  293. <OutputPath>../../../../bin/</OutputPath>
  294. </Options>
  295. </Configuration>
  296. <ReferencePath>../../../../bin/</ReferencePath>
  297. <Reference name="System"/>
  298. <Reference name="System.Xml"/>
  299. <Reference name="libsecondlife.dll"/>
  300. <Reference name="XMLRPC.dll"/>
  301. <Reference name="OpenSim.Framework"/>
  302. <Reference name="OpenSim.Framework.Console"/>
  303. <Reference name="OpenSim.Data"/>
  304. <Files>
  305. <Match pattern="*.cs" recurse="true"/>
  306. </Files>
  307. </Project>
  308. <Project name="OpenSim.Framework.Configuration.HTTP" path="OpenSim/Framework/Configuration/HTTP" type="Library">
  309. <Configuration name="Debug">
  310. <Options>
  311. <OutputPath>../../../../bin/</OutputPath>
  312. </Options>
  313. </Configuration>
  314. <Configuration name="Release">
  315. <Options>
  316. <OutputPath>../../../../bin/</OutputPath>
  317. </Options>
  318. </Configuration>
  319. <ReferencePath>../../../../bin/</ReferencePath>
  320. <Reference name="System"/>
  321. <Reference name="System.Xml"/>
  322. <Reference name="libsecondlife.dll"/>
  323. <Reference name="XMLRPC.dll"/>
  324. <Reference name="OpenSim.Framework"/>
  325. <Reference name="OpenSim.Framework.Console"/>
  326. <Reference name="OpenSim.Framework.Configuration.XML"/>
  327. <Reference name="OpenSim.Data"/>
  328. <Reference name="log4net.dll"/>
  329. <Files>
  330. <Match pattern="*.cs" recurse="true"/>
  331. </Files>
  332. </Project>
  333. <Project name="OpenSim.Framework.AssetLoader.Filesystem" path="OpenSim/Framework/AssetLoader/Filesystem" type="Library">
  334. <Configuration name="Debug">
  335. <Options>
  336. <OutputPath>../../../../bin/</OutputPath>
  337. </Options>
  338. </Configuration>
  339. <Configuration name="Release">
  340. <Options>
  341. <OutputPath>../../../../bin/</OutputPath>
  342. </Options>
  343. </Configuration>
  344. <ReferencePath>../../../../bin/</ReferencePath>
  345. <Reference name="System"/>
  346. <Reference name="System.Xml" localCopy="false"/>
  347. <Reference name="OpenSim.Framework.Console"/>
  348. <Reference name="OpenSim.Framework"/>
  349. <Reference name="libsecondlife.dll"/>
  350. <Reference name="Nini.dll" />
  351. <Reference name="log4net.dll"/>
  352. <Files>
  353. <Match pattern="*.cs" recurse="true"/>
  354. </Files>
  355. </Project>
  356. <Project name="OpenSim.Framework.RegionLoader.Web" path="OpenSim/Framework/RegionLoader/Web" type="Library">
  357. <Configuration name="Debug">
  358. <Options>
  359. <OutputPath>../../../../bin/</OutputPath>
  360. </Options>
  361. </Configuration>
  362. <Configuration name="Release">
  363. <Options>
  364. <OutputPath>../../../../bin/</OutputPath>
  365. </Options>
  366. </Configuration>
  367. <ReferencePath>../../../../bin/</ReferencePath>
  368. <Reference name="System"/>
  369. <Reference name="System.Xml"/>
  370. <Reference name="libsecondlife.dll"/>
  371. <Reference name="XMLRPC.dll"/>
  372. <Reference name="OpenSim.Framework"/>
  373. <Reference name="OpenSim.Framework.Console"/>
  374. <Reference name="Nini.dll" />
  375. <Reference name="log4net.dll"/>
  376. <Files>
  377. <Match pattern="*.cs" recurse="true"/>
  378. </Files>
  379. </Project>
  380. <Project name="OpenSim.Framework.RegionLoader.Filesystem" path="OpenSim/Framework/RegionLoader/Filesystem" type="Library">
  381. <Configuration name="Debug">
  382. <Options>
  383. <OutputPath>../../../../bin/</OutputPath>
  384. </Options>
  385. </Configuration>
  386. <Configuration name="Release">
  387. <Options>
  388. <OutputPath>../../../../bin/</OutputPath>
  389. </Options>
  390. </Configuration>
  391. <ReferencePath>../../../../bin/</ReferencePath>
  392. <Reference name="System"/>
  393. <Reference name="System.Xml"/>
  394. <Reference name="libsecondlife.dll"/>
  395. <Reference name="XMLRPC.dll"/>
  396. <Reference name="OpenSim.Framework"/>
  397. <Reference name="OpenSim.Framework.Console"/>
  398. <Reference name="Nini.dll" />
  399. <Files>
  400. <Match pattern="*.cs" recurse="true"/>
  401. </Files>
  402. </Project>
  403. <Project name="OpenSim.Framework.Servers" path="OpenSim/Framework/Servers" type="Library">
  404. <Configuration name="Debug">
  405. <Options>
  406. <OutputPath>../../../bin/</OutputPath>
  407. </Options>
  408. </Configuration>
  409. <Configuration name="Release">
  410. <Options>
  411. <OutputPath>../../../bin/</OutputPath>
  412. </Options>
  413. </Configuration>
  414. <ReferencePath>../../../bin/</ReferencePath>
  415. <Reference name="System"/>
  416. <Reference name="System.Xml"/>
  417. <Reference name="OpenSim.Framework"/>
  418. <Reference name="OpenSim.Framework.Console"/>
  419. <Reference name="OpenSim.Framework.Statistics"/>
  420. <Reference name="libsecondlife.dll"/>
  421. <Reference name="XMLRPC.dll"/>
  422. <Reference name="log4net.dll"/>
  423. <Reference name="HttpServer.dll"/>
  424. <Files>
  425. <Match pattern="*.cs" recurse="true"/>
  426. </Files>
  427. </Project>
  428. <Project name="OpenSim.Region.Physics.Manager" path="OpenSim/Region/Physics/Manager" type="Library">
  429. <Configuration name="Debug">
  430. <Options>
  431. <OutputPath>../../../../bin/</OutputPath>
  432. </Options>
  433. </Configuration>
  434. <Configuration name="Release">
  435. <Options>
  436. <OutputPath>../../../../bin/</OutputPath>
  437. </Options>
  438. </Configuration>
  439. <ReferencePath>../../../../bin/</ReferencePath>
  440. <Reference name="System" localCopy="false"/>
  441. <Reference name="System.Xml" localCopy="false" />
  442. <Reference name="libsecondlife.dll"/>
  443. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  444. <Reference name="OpenSim.Framework" localCopy="false"/>
  445. <Reference name="OpenSim.Framework.Console" localCopy="false"/>
  446. <Reference name="nunit.framework.dll" />
  447. <Reference name="Nini.dll" />
  448. <Reference name="log4net.dll"/>
  449. <Files>
  450. <Match pattern="*.cs" recurse="false"/>
  451. </Files>
  452. </Project>
  453. <!-- Physics Plug-ins -->
  454. <Project name="OpenSim.Region.Physics.BasicPhysicsPlugin" path="OpenSim/Region/Physics/BasicPhysicsPlugin" type="Library">
  455. <Configuration name="Debug">
  456. <Options>
  457. <OutputPath>../../../../bin/Physics/</OutputPath>
  458. </Options>
  459. </Configuration>
  460. <Configuration name="Release">
  461. <Options>
  462. <OutputPath>../../../../bin/Physics/</OutputPath>
  463. </Options>
  464. </Configuration>
  465. <ReferencePath>../../../../bin/</ReferencePath>
  466. <Reference name="System" localCopy="false"/>
  467. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  468. <Reference name="Nini.dll" />
  469. <Reference name="OpenSim.Framework"/>
  470. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  471. <Files>
  472. <Match pattern="*.cs" recurse="true"/>
  473. </Files>
  474. </Project>
  475. <Project name="OpenSim.Region.Physics.POSPlugin" path="OpenSim/Region/Physics/POSPlugin" type="Library">
  476. <Configuration name="Debug">
  477. <Options>
  478. <OutputPath>../../../../bin/Physics/</OutputPath>
  479. </Options>
  480. </Configuration>
  481. <Configuration name="Release">
  482. <Options>
  483. <OutputPath>../../../../bin/Physics/</OutputPath>
  484. </Options>
  485. </Configuration>
  486. <ReferencePath>../../../../bin/</ReferencePath>
  487. <Reference name="System" localCopy="false"/>
  488. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  489. <Reference name="Nini.dll" />
  490. <Reference name="OpenSim.Framework"/>
  491. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  492. <Files>
  493. <Match pattern="*.cs" recurse="true"/>
  494. </Files>
  495. </Project>
  496. <Project name="OpenSim.Region.Physics.PhysXPlugin" path="OpenSim/Region/Physics/PhysXPlugin" type="Library">
  497. <Configuration name="Debug">
  498. <Options>
  499. <OutputPath>../../../../bin/Physics/</OutputPath>
  500. </Options>
  501. </Configuration>
  502. <Configuration name="Release">
  503. <Options>
  504. <OutputPath>../../../../bin/Physics/</OutputPath>
  505. </Options>
  506. </Configuration>
  507. <ReferencePath>../../../../bin/</ReferencePath>
  508. <Reference name="System" localCopy="false"/>
  509. <Reference name="libsecondlife.dll"/>
  510. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  511. <Reference name="Nini.dll" />
  512. <Reference name="PhysX_Wrapper_Dotnet.dll" localCopy="false"/>
  513. <Reference name="OpenSim.Framework"/>
  514. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  515. <Files>
  516. <Match pattern="*.cs" recurse="true"/>
  517. </Files>
  518. </Project>
  519. <Project name="OpenSim.Region.Physics.OdePlugin" path="OpenSim/Region/Physics/OdePlugin" type="Library">
  520. <Configuration name="Debug">
  521. <Options>
  522. <OutputPath>../../../../bin/Physics/</OutputPath>
  523. </Options>
  524. </Configuration>
  525. <Configuration name="Release">
  526. <Options>
  527. <OutputPath>../../../../bin/Physics/</OutputPath>
  528. </Options>
  529. </Configuration>
  530. <ReferencePath>../../../../bin/</ReferencePath>
  531. <Reference name="System" localCopy="false"/>
  532. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  533. <Reference name="libsecondlife.dll"/>
  534. <Reference name="Nini.dll" />
  535. <Reference name="OpenSim.Framework"/>
  536. <Reference name="OpenSim.Framework.Console"/>
  537. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  538. <Reference name="Ode.NET.dll" localCopy="false" />
  539. <Reference name="nunit.framework.dll" />
  540. <Reference name="log4net.dll"/>
  541. <Files>
  542. <Match pattern="*.cs" recurse="true"/>
  543. </Files>
  544. </Project>
  545. <Project name="OpenSim.Region.Physics.BulletXPlugin" path="OpenSim/Region/Physics/BulletXPlugin" type="Library">
  546. <Configuration name="Debug">
  547. <Options>
  548. <OutputPath>../../../../bin/Physics/</OutputPath>
  549. </Options>
  550. </Configuration>
  551. <Configuration name="Release">
  552. <Options>
  553. <OutputPath>../../../../bin/Physics/</OutputPath>
  554. </Options>
  555. </Configuration>
  556. <ReferencePath>../../../../bin/</ReferencePath>
  557. <Reference name="System" localCopy="false"/>
  558. <Reference name="libsecondlife.dll"/>
  559. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  560. <Reference name="Nini.dll" />
  561. <Reference name="OpenSim.Framework"/>
  562. <Reference name="OpenSim.Framework.Console" localCopy="false"/>
  563. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  564. <Reference name="Modified.XnaDevRu.BulletX.dll" localCopy="false" />
  565. <Reference name="MonoXnaCompactMaths.dll" localCopy="false" />
  566. <Reference name="log4net.dll"/>
  567. <Files>
  568. <Match pattern="*.cs" recurse="true"/>
  569. </Files>
  570. </Project>
  571. <Project name="OpenSim.Region.Physics.Meshing" path="OpenSim/Region/Physics/Meshing" type="Library">
  572. <Configuration name="Debug">
  573. <Options>
  574. <OutputPath>../../../../bin/Physics/</OutputPath>
  575. </Options>
  576. </Configuration>
  577. <Configuration name="Release">
  578. <Options>
  579. <OutputPath>../../../../bin/Physics/</OutputPath>
  580. </Options>
  581. </Configuration>
  582. <ReferencePath>../../../../bin/</ReferencePath>
  583. <Reference name="System" localCopy="false"/>
  584. <Reference name="System.Drawing"/>
  585. <Reference name="libsecondlife.dll"/>
  586. <Reference name="Nini.dll" />
  587. <Reference name="OpenSim.Framework"/>
  588. <Reference name="OpenSim.Framework.Console"/>
  589. <Reference name="OpenSim.Region.Physics.Manager" localCopy="false"/>
  590. <Reference name="log4net.dll"/>
  591. <Files>
  592. <Match pattern="*.cs" recurse="true"/>
  593. </Files>
  594. </Project>
  595. <!-- OpenSim.Framework.Communications -->
  596. <Project name="OpenSim.Framework.Communications" path="OpenSim/Framework/Communications" type="Library">
  597. <Configuration name="Debug">
  598. <Options>
  599. <OutputPath>../../../bin/</OutputPath>
  600. </Options>
  601. </Configuration>
  602. <Configuration name="Release">
  603. <Options>
  604. <OutputPath>../../../bin/</OutputPath>
  605. </Options>
  606. </Configuration>
  607. <ReferencePath>../../../bin/</ReferencePath>
  608. <Reference name="System"/>
  609. <Reference name="System.Xml"/>
  610. <Reference name="System.Web"/>
  611. <Reference name="OpenSim.Framework"/>
  612. <Reference name="OpenSim.Framework.AssetLoader.Filesystem"/>
  613. <Reference name="OpenSim.Data" />
  614. <Reference name="OpenSim.Framework.Servers"/>
  615. <Reference name="OpenSim.Framework.Console"/>
  616. <Reference name="OpenSim.Framework.Statistics"/>
  617. <Reference name="libsecondlife.dll"/>
  618. <Reference name="Nini.dll" />
  619. <Reference name="XMLRPC.dll"/>
  620. <Reference name="log4net.dll"/>
  621. <Files>
  622. <Match pattern="*.cs" recurse="true"/>
  623. </Files>
  624. </Project>
  625. <Project name="OpenSim.Region.Communications.Local" path="OpenSim/Region/Communications/Local" type="Library">
  626. <Configuration name="Debug">
  627. <Options>
  628. <OutputPath>../../../../bin/</OutputPath>
  629. </Options>
  630. </Configuration>
  631. <Configuration name="Release">
  632. <Options>
  633. <OutputPath>../../../../bin/</OutputPath>
  634. </Options>
  635. </Configuration>
  636. <ReferencePath>../../../../bin/</ReferencePath>
  637. <Reference name="System"/>
  638. <Reference name="System.Xml"/>
  639. <Reference name="OpenSim.Framework"/>
  640. <Reference name="OpenSim.Framework.Communications"/>
  641. <Reference name="OpenSim.Framework.Console"/>
  642. <Reference name="OpenSim.Data" />
  643. <Reference name="OpenSim.Framework.Servers"/>
  644. <Reference name="OpenSim.Framework.Statistics"/>
  645. <Reference name="libsecondlife.dll"/>
  646. <Reference name="XMLRPC.dll"/>
  647. <Reference name="log4net.dll"/>
  648. <Files>
  649. <Match pattern="*.cs" recurse="true"/>
  650. </Files>
  651. </Project>
  652. <Project name="OpenSim.Region.Communications.OGS1" path="OpenSim/Region/Communications/OGS1" type="Library">
  653. <Configuration name="Debug">
  654. <Options>
  655. <OutputPath>../../../../bin/</OutputPath>
  656. </Options>
  657. </Configuration>
  658. <Configuration name="Release">
  659. <Options>
  660. <OutputPath>../../../../bin/</OutputPath>
  661. </Options>
  662. </Configuration>
  663. <ReferencePath>../../../../bin/</ReferencePath>
  664. <Reference name="System"/>
  665. <Reference name="System.Xml"/>
  666. <Reference name="System.Data"/>
  667. <Reference name="System.Runtime.Remoting"/>
  668. <Reference name="OpenSim.Framework"/>
  669. <Reference name="OpenSim.Data" />
  670. <Reference name="OpenSim.Framework.Communications" />
  671. <Reference name="OpenSim.Framework.Console"/>
  672. <Reference name="OpenSim.Framework.Servers"/>
  673. <Reference name="OpenSim.Framework.Statistics"/>
  674. <Reference name="OpenSim.Region.Communications.Local" />
  675. <Reference name="libsecondlife.dll"/>
  676. <Reference name="XMLRPC.dll"/>
  677. <Reference name="log4net.dll"/>
  678. <Files>
  679. <Match pattern="*.cs" recurse="true"/>
  680. </Files>
  681. </Project>
  682. <Project name="OpenSim.Region.Environment" path="OpenSim/Region/Environment" type="Library">
  683. <Configuration name="Debug">
  684. <Options>
  685. <OutputPath>../../../bin/</OutputPath>
  686. </Options>
  687. </Configuration>
  688. <Configuration name="Release">
  689. <Options>
  690. <OutputPath>../../../bin/</OutputPath>
  691. </Options>
  692. </Configuration>
  693. <ReferencePath>../../../bin/</ReferencePath>
  694. <Reference name="System" localCopy="false"/>
  695. <Reference name="System.Xml"/>
  696. <Reference name="System.Drawing"/>
  697. <Reference name="System.Runtime.Remoting"/>
  698. <Reference name="libsecondlife.dll"/>
  699. <Reference name="Axiom.MathLib.dll"/>
  700. <Reference name="OpenSim.Framework"/>
  701. <Reference name="OpenSim.Data" />
  702. <Reference name="OpenSim.Framework.Console"/>
  703. <Reference name="OpenSim.Framework.Servers"/>
  704. <Reference name="OpenSim.Framework.Statistics"/>
  705. <Reference name="OpenSim.Region.Physics.Manager"/>
  706. <!-- Unit tests -->
  707. <Reference name="OpenSim.Tests.Common"/>
  708. <Reference name="nunit.framework.dll"/>
  709. <!-- For scripting in funny languages by default -->
  710. <Reference name="Microsoft.JScript"/>
  711. <Reference name="XMLRPC.dll"/>
  712. <Reference name="OpenSim.Framework.Communications"/>
  713. <Reference name="OpenSim.Data.Base"/>
  714. <Reference name="Nini.dll" />
  715. <Reference name="log4net.dll"/>
  716. <Files>
  717. <Match pattern="*.cs" recurse="true"/>
  718. </Files>
  719. </Project>
  720. <Project name="OpenSim.Region.ClientStack" path="OpenSim/Region/ClientStack" type="Library">
  721. <Configuration name="Debug">
  722. <Options>
  723. <OutputPath>../../../bin/</OutputPath>
  724. </Options>
  725. </Configuration>
  726. <Configuration name="Release">
  727. <Options>
  728. <OutputPath>../../../bin/</OutputPath>
  729. </Options>
  730. </Configuration>
  731. <ReferencePath>../../../bin/</ReferencePath>
  732. <Reference name="System" localCopy="false"/>
  733. <Reference name="System.Xml"/>
  734. <Reference name="libsecondlife.dll"/>
  735. <Reference name="Axiom.MathLib.dll"/>
  736. <Reference name="OpenSim.Region.Environment"/>
  737. <Reference name="OpenSim.Framework"/>
  738. <Reference name="OpenSim.Data"/>
  739. <Reference name="OpenSim.Framework.Servers"/>
  740. <Reference name="OpenSim.Framework.Console"/>
  741. <Reference name="OpenSim.Framework.Communications"/>
  742. <Reference name="OpenSim.Framework.Statistics"/>
  743. <Reference name="OpenSim.Region.Communications.Local"/>
  744. <Reference name="OpenSim.Region.Physics.Manager"/>
  745. <Reference name="XMLRPC.dll"/>
  746. <Reference name="Nini.dll" />
  747. <Reference name="log4net.dll"/>
  748. <Files>
  749. <Match pattern="*.cs" recurse="false"/>
  750. </Files>
  751. </Project>
  752. <!-- ClientStack Plugins -->
  753. <Project name="OpenSim.Region.ClientStack.LindenUDP" path="OpenSim/Region/ClientStack/LindenUDP" type="Library">
  754. <Configuration name="Debug">
  755. <Options>
  756. <OutputPath>../../../../bin/</OutputPath>
  757. </Options>
  758. </Configuration>
  759. <Configuration name="Release">
  760. <Options>
  761. <OutputPath>../../../../bin/</OutputPath>
  762. </Options>
  763. </Configuration>
  764. <ReferencePath>../../../../bin/</ReferencePath>
  765. <Reference name="System" localCopy="false"/>
  766. <Reference name="System.Xml"/>
  767. <Reference name="libsecondlife.dll"/>
  768. <Reference name="Axiom.MathLib.dll"/>
  769. <Reference name="OpenSim.Region.Environment"/>
  770. <Reference name="OpenSim.Framework"/>
  771. <Reference name="OpenSim.Data"/>
  772. <Reference name="OpenSim.Framework.Servers"/>
  773. <Reference name="OpenSim.Framework.Console"/>
  774. <Reference name="OpenSim.Framework.Communications"/>
  775. <Reference name="OpenSim.Framework.Statistics"/>
  776. <Reference name="OpenSim.Region.ClientStack"/>
  777. <Reference name="OpenSim.Region.Communications.Local"/>
  778. <Reference name="OpenSim.Region.Physics.Manager"/>
  779. <Reference name="XMLRPC.dll"/>
  780. <Reference name="Nini.dll" />
  781. <Reference name="log4net.dll"/>
  782. <Files>
  783. <Match pattern="*.cs" recurse="true"/>
  784. </Files>
  785. </Project>
  786. <!-- Datastore Plugins -->
  787. <Project name="OpenSim.Data.Null" path="OpenSim/Data/Null" type="Library">
  788. <Configuration name="Debug">
  789. <Options>
  790. <OutputPath>../../../bin/</OutputPath>
  791. </Options>
  792. </Configuration>
  793. <Configuration name="Release">
  794. <Options>
  795. <OutputPath>../../../bin/</OutputPath>
  796. </Options>
  797. </Configuration>
  798. <ReferencePath>../../../bin/</ReferencePath>
  799. <Reference name="System" localCopy="false"/>
  800. <Reference name="System.Xml"/>
  801. <Reference name="libsecondlife.dll"/>
  802. <Reference name="OpenSim.Framework"/>
  803. <Reference name="OpenSim.Region.Environment"/>
  804. <Reference name="OpenSim.Framework.Console"/>
  805. <Reference name="log4net.dll"/>
  806. <Files>
  807. <Match pattern="*.cs" recurse="true"/>
  808. </Files>
  809. </Project>
  810. <Project name="OpenSim.Region.Modules.AvatarFactory" path="OpenSim/Region/Modules/AvatarFactory" type="Library">
  811. <Configuration name="Debug">
  812. <Options>
  813. <OutputPath>../../../../bin/</OutputPath>
  814. </Options>
  815. </Configuration>
  816. <Configuration name="Release">
  817. <Options>
  818. <OutputPath>../../../../bin/</OutputPath>
  819. </Options>
  820. </Configuration>
  821. <ReferencePath>../../../../bin/</ReferencePath>
  822. <Reference name="System" localCopy="false"/>
  823. <Reference name="System.Xml"/>
  824. <Reference name="System.Data"/>
  825. <Reference name="libsecondlife.dll"/>
  826. <Reference name="log4net.dll"/>
  827. <Reference name="OpenSim.Framework"/>
  828. <Reference name="OpenSim.Framework.Communications"/>
  829. <Reference name="OpenSim.Data.Base" />
  830. <Reference name="OpenSim.Region.Environment"/>
  831. <Reference name="OpenSim.Data.MapperFactory"/>
  832. <Reference name="Nini.dll" />
  833. <Reference name="OpenSim.Data.MySQLMapper" />
  834. <Files>
  835. <Match pattern="*.cs" recurse="true"/>
  836. </Files>
  837. </Project>
  838. <Project name="OpenSim.Region.Modules.Python" path="OpenSim/Region/Modules/Python" type="Library">
  839. <Configuration name="Debug">
  840. <Options>
  841. <OutputPath>../../../../bin/</OutputPath>
  842. </Options>
  843. </Configuration>
  844. <Configuration name="Release">
  845. <Options>
  846. <OutputPath>../../../../bin/</OutputPath>
  847. </Options>
  848. </Configuration>
  849. <ReferencePath>../../../../bin/</ReferencePath>
  850. <Reference name="System" localCopy="false"/>
  851. <Reference name="libsecondlife.dll"/>
  852. <Reference name="IronPython.dll"/>
  853. <Reference name="IronMath.dll"/>
  854. <Reference name="OpenSim.Framework"/>
  855. <Reference name="OpenSim.Data.Base" />
  856. <Reference name="OpenSim.Region.Environment"/>
  857. <Reference name="Nini.dll" />
  858. <Reference name="log4net.dll"/>
  859. <Files>
  860. <Match pattern="*.cs" recurse="true"/>
  861. </Files>
  862. </Project>
  863. <Project name="OpenSim.Region.Modules.Terrain.Extensions.DefaultEffects" path="OpenSim/Region/Modules/Terrain/Extensions/DefaultEffects" type="Library">
  864. <Configuration name="Debug">
  865. <Options>
  866. <OutputPath>../../../../../../bin/Terrain/</OutputPath>
  867. </Options>
  868. </Configuration>
  869. <Configuration name="Release">
  870. <Options>
  871. <OutputPath>../../../../../../bin/Terrain/</OutputPath>
  872. </Options>
  873. </Configuration>
  874. <ReferencePath>../../../../../../bin/</ReferencePath>
  875. <Reference name="System" localCopy="false"/>
  876. <Reference name="OpenSim.Framework"/>
  877. <Reference name="OpenSim.Region.Environment"/>
  878. <Files>
  879. <Match pattern="*.cs" recurse="true"/>
  880. </Files>
  881. </Project>
  882. <Project name="OpenSim.Region.Modules.SvnSerialiser" path="OpenSim/Region/Modules/SvnSerialiser" type="Library">
  883. <Configuration name="Debug">
  884. <Options>
  885. <OutputPath>../../../../bin/</OutputPath>
  886. </Options>
  887. </Configuration>
  888. <Configuration name="Release">
  889. <Options>
  890. <OutputPath>../../../../bin/</OutputPath>
  891. </Options>
  892. </Configuration>
  893. <ReferencePath>../../../../bin/</ReferencePath>
  894. <Reference name="System" localCopy="false"/>
  895. <Reference name="System.Xml"/>
  896. <Reference name="System.Data"/>
  897. <Reference name="libsecondlife.dll"/>
  898. <Reference name="OpenSim.Framework"/>
  899. <Reference name="OpenSim.Framework.Communications"/>
  900. <Reference name="OpenSim.Data.Base" />
  901. <Reference name="OpenSim.Region.Environment"/>
  902. <Reference name="Nini.dll" />
  903. <Reference name="PumaCode.SvnDotNet.dll" />
  904. <Reference name="log4net.dll"/>
  905. <Files>
  906. <Match pattern="*.cs" recurse="true"/>
  907. </Files>
  908. </Project>
  909. <!-- OpenSim app -->
  910. <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe">
  911. <Configuration name="Debug">
  912. <Options>
  913. <OutputPath>../../../bin/</OutputPath>
  914. </Options>
  915. </Configuration>
  916. <Configuration name="Release">
  917. <Options>
  918. <OutputPath>../../../bin/</OutputPath>
  919. </Options>
  920. </Configuration>
  921. <ReferencePath>../../../bin/</ReferencePath>
  922. <Reference name="System" localCopy="false"/>
  923. <Reference name="System.Xml"/>
  924. <Reference name="Mono.Addins.dll" />
  925. <Reference name="libsecondlife.dll"/>
  926. <Reference name="Axiom.MathLib.dll"/>
  927. <Reference name="OpenSim.Framework"/>
  928. <Reference name="OpenSim.Data"/>
  929. <Reference name="OpenSim.Framework.Console"/>
  930. <Reference name="OpenSim.Region.Physics.Manager"/>
  931. <Reference name="OpenSim.Framework.Servers"/>
  932. <Reference name="OpenSim.Framework.Statistics"/>
  933. <Reference name="OpenSim.Region.Environment"/>
  934. <Reference name="OpenSim.Region.ClientStack"/>
  935. <Reference name="OpenSim.Framework.Communications"/>
  936. <Reference name="OpenSim.Region.Communications.OGS1"/>
  937. <Reference name="XMLRPC.dll"/>
  938. <Reference name="OpenSim.Region.Communications.Local"/>
  939. <Reference name="Nini.dll" />
  940. <Reference name="log4net.dll"/>
  941. <Files>
  942. <Match pattern="*.cs" recurse="true"/>
  943. </Files>
  944. </Project>
  945. <Project name="OpenSim.ApplicationPlugins.LoadRegions" path="OpenSim/ApplicationPlugins/LoadRegions" type="Library">
  946. <Configuration name="Debug">
  947. <Options>
  948. <OutputPath>../../../bin/</OutputPath>
  949. </Options>
  950. </Configuration>
  951. <Configuration name="Release">
  952. <Options>
  953. <OutputPath>../../../bin/</OutputPath>
  954. </Options>
  955. </Configuration>
  956. <ReferencePath>../../../bin/</ReferencePath>
  957. <Reference name="Mono.Addins.dll" />
  958. <Reference name="System"/>
  959. <Reference name="System.Xml"/>
  960. <Reference name="libsecondlife.dll" />
  961. <Reference name="Nini.dll" />
  962. <Reference name="OpenSim"/>
  963. <Reference name="OpenSim.Region.ClientStack"/>
  964. <Reference name="OpenSim.Region.Environment"/>
  965. <Reference name="OpenSim.Framework"/>
  966. <Reference name="OpenSim.Framework.Console"/>
  967. <Reference name="OpenSim.Framework.RegionLoader.Filesystem"/>
  968. <Reference name="OpenSim.Framework.RegionLoader.Web"/>
  969. <Reference name="OpenSim.Framework.Servers"/>
  970. <Reference name="log4net.dll"/>
  971. <Files>
  972. <Match pattern="*.cs" recurse="true"/>
  973. </Files>
  974. </Project>
  975. <Project name="OpenSim.ApplicationPlugins.RemoteController" path="OpenSim/ApplicationPlugins/RemoteController" type="Library">
  976. <Configuration name="Debug">
  977. <Options>
  978. <OutputPath>../../../bin/</OutputPath>
  979. </Options>
  980. </Configuration>
  981. <Configuration name="Release">
  982. <Options>
  983. <OutputPath>../../../bin/</OutputPath>
  984. </Options>
  985. </Configuration>
  986. <ReferencePath>../../../bin/</ReferencePath>
  987. <Reference name="Mono.Addins.dll" />
  988. <Reference name="System"/>
  989. <Reference name="System.Xml"/>
  990. <Reference name="libsecondlife.dll" />
  991. <Reference name="Nini.dll" />
  992. <Reference name="XMLRPC.dll" />
  993. <Reference name="OpenSim"/>
  994. <Reference name="OpenSim.Region.ClientStack"/>
  995. <Reference name="OpenSim.Region.Environment"/>
  996. <Reference name="OpenSim.Framework.Communications"/>
  997. <Reference name="OpenSim.Framework"/>
  998. <Reference name="OpenSim.Framework.Servers"/>
  999. <Reference name="OpenSim.Framework.Console"/>
  1000. <Reference name="log4net.dll"/>
  1001. <Files>
  1002. <Match pattern="*.cs" recurse="true"/>
  1003. </Files>
  1004. </Project>
  1005. <!-- REST plugins -->
  1006. <Project name="OpenSim.ApplicationPlugins.Rest"
  1007. path="OpenSim/ApplicationPlugins/Rest" type="Library">
  1008. <Configuration name="Debug">
  1009. <Options>
  1010. <OutputPath>../../../bin/</OutputPath>
  1011. </Options>
  1012. </Configuration>
  1013. <Configuration name="Release">
  1014. <Options>
  1015. <OutputPath>../../../bin/</OutputPath>
  1016. </Options>
  1017. </Configuration>
  1018. <ReferencePath>../../../bin/</ReferencePath>
  1019. <Reference name="Mono.Addins.dll" />
  1020. <Reference name="System"/>
  1021. <Reference name="System.Xml"/>
  1022. <Reference name="libsecondlife.dll" />
  1023. <Reference name="Nini.dll" />
  1024. <Reference name="XMLRPC.dll" />
  1025. <Reference name="OpenSim"/>
  1026. <Reference name="OpenSim.Region.ClientStack"/>
  1027. <Reference name="OpenSim.Region.Environment"/>
  1028. <Reference name="OpenSim.Framework.Communications"/>
  1029. <Reference name="OpenSim.Framework"/>
  1030. <Reference name="OpenSim.Framework.Servers"/>
  1031. <Reference name="OpenSim.Framework.Console"/>
  1032. <Reference name="log4net.dll"/>
  1033. <Files>
  1034. <Match pattern="*.cs" recurse="false"/>
  1035. </Files>
  1036. </Project>
  1037. <Project name="OpenSim.ApplicationPlugins.Rest.Regions"
  1038. path="OpenSim/ApplicationPlugins/Rest/Regions" type="Library">
  1039. <Configuration name="Debug">
  1040. <Options>
  1041. <OutputPath>../../../../bin/</OutputPath>
  1042. </Options>
  1043. </Configuration>
  1044. <Configuration name="Release">
  1045. <Options>
  1046. <OutputPath>../../../../bin/</OutputPath>
  1047. </Options>
  1048. </Configuration>
  1049. <ReferencePath>../../../../bin/</ReferencePath>
  1050. <Reference name="Mono.Addins.dll" />
  1051. <Reference name="System"/>
  1052. <Reference name="System.Xml"/>
  1053. <Reference name="libsecondlife.dll" />
  1054. <Reference name="Nini.dll" />
  1055. <Reference name="XMLRPC.dll" />
  1056. <Reference name="OpenSim"/>
  1057. <Reference name="OpenSim.Region.ClientStack"/>
  1058. <Reference name="OpenSim.Region.Environment"/>
  1059. <Reference name="OpenSim.Framework.Communications"/>
  1060. <Reference name="OpenSim.Framework"/>
  1061. <Reference name="OpenSim.Framework.Servers"/>
  1062. <Reference name="OpenSim.Framework.Console"/>
  1063. <Reference name="OpenSim.ApplicationPlugins.Rest"/>
  1064. <Reference name="log4net.dll"/>
  1065. <Files>
  1066. <Match pattern="*.cs" recurse="true"/>
  1067. </Files>
  1068. </Project>
  1069. <Project name="OpenSim.ApplicationPlugins.Rest.Inventory"
  1070. path="OpenSim/ApplicationPlugins/Rest/Inventory" type="Library">
  1071. <Configuration name="Debug">
  1072. <Options>
  1073. <OutputPath>../../../../bin/</OutputPath>
  1074. </Options>
  1075. </Configuration>
  1076. <Configuration name="Release">
  1077. <Options>
  1078. <OutputPath>../../../../bin/</OutputPath>
  1079. </Options>
  1080. </Configuration>
  1081. <ReferencePath>../../../../bin/</ReferencePath>
  1082. <Reference name="Mono.Addins.dll" />
  1083. <Reference name="System"/>
  1084. <Reference name="System.IO"/>
  1085. <Reference name="System.Xml"/>
  1086. <Reference name="System.Xml.Serialization"/>
  1087. <Reference name="libsecondlife.dll" />
  1088. <Reference name="Nini.dll" />
  1089. <Reference name="XMLRPC.dll" />
  1090. <Reference name="OpenSim"/>
  1091. <Reference name="OpenSim.Region.ClientStack"/>
  1092. <Reference name="OpenSim.Region.Environment"/>
  1093. <Reference name="OpenSim.Framework.Communications"/>
  1094. <Reference name="OpenSim.Framework"/>
  1095. <Reference name="OpenSim.Framework.Servers"/>
  1096. <Reference name="OpenSim.Framework.Console"/>
  1097. <Reference name="OpenSim.ApplicationPlugins.Rest"/>
  1098. <Reference name="log4net"/>
  1099. <Files>
  1100. <Match pattern="*.cs" recurse="true"/>
  1101. </Files>
  1102. </Project>
  1103. <!-- /REST plugins -->
  1104. <!-- Scene Server API Example Apps -->
  1105. <Project name="OpenSim.Region.DataSnapshot" path="OpenSim/Region/DataSnapshot" type="Library">
  1106. <Configuration name="Debug">
  1107. <Options>
  1108. <OutputPath>../../../bin/</OutputPath>
  1109. </Options>
  1110. </Configuration>
  1111. <Configuration name="Release">
  1112. <Options>
  1113. <OutputPath>../../../bin/</OutputPath>
  1114. </Options>
  1115. </Configuration>
  1116. <ReferencePath>../../../bin/</ReferencePath>
  1117. <Reference name="System" localCopy="false"/>
  1118. <Reference name="System.Xml"/>
  1119. <Reference name="System.Data"/>
  1120. <Reference name="OpenSim.Framework"/>
  1121. <Reference name="OpenSim.Framework.Communications"/>
  1122. <Reference name="OpenSim.Framework.Console"/>
  1123. <Reference name="OpenSim.Framework.Servers"/>
  1124. <Reference name="OpenSim.Region.Environment"/>
  1125. <Reference name="libsecondlife.dll"/>
  1126. <Reference name="Nini.dll" />
  1127. <Reference name="log4net.dll" />
  1128. <Files>
  1129. <Match pattern="*.cs" recurse="true"/>
  1130. </Files>
  1131. </Project>
  1132. <Project name="OpenSim.Region.Examples.SimpleModule" path="OpenSim/Region/Examples/SimpleModule" type="Library">
  1133. <Configuration name="Debug">
  1134. <Options>
  1135. <OutputPath>bin/</OutputPath>
  1136. </Options>
  1137. </Configuration>
  1138. <Configuration name="Release">
  1139. <Options>
  1140. <OutputPath>bin/</OutputPath>
  1141. </Options>
  1142. </Configuration>
  1143. <ReferencePath>../../../../bin/</ReferencePath>
  1144. <Reference name="libsecondlife.dll"/>
  1145. <Reference name="System" localCopy="false"/>
  1146. <Reference name="OpenSim.Framework"/>
  1147. <Reference name="OpenSim.Region.Environment"/>
  1148. <Reference name="Nini.dll" />
  1149. <Reference name="log4net.dll"/>
  1150. <Files>
  1151. <Match pattern="*.cs" recurse="true"/>
  1152. </Files>
  1153. </Project>
  1154. <Project name="OpenSim.Data.MySQL" path="OpenSim/Data/MySQL" type="Library">
  1155. <Configuration name="Debug">
  1156. <Options>
  1157. <OutputPath>../../../bin/</OutputPath>
  1158. </Options>
  1159. </Configuration>
  1160. <Configuration name="Release">
  1161. <Options>
  1162. <OutputPath>../../../bin/</OutputPath>
  1163. </Options>
  1164. </Configuration>
  1165. <ReferencePath>../../../bin/</ReferencePath>
  1166. <Reference name="System" localCopy="false"/>
  1167. <Reference name="System.Xml"/>
  1168. <Reference name="System.Data"/>
  1169. <Reference name="OpenSim.Framework"/>
  1170. <Reference name="OpenSim.Data"/>
  1171. <Reference name="OpenSim.Data.MapperFactory"/>
  1172. <Reference name="OpenSim.Data.Base"/>
  1173. <Reference name="OpenSim.Data.MySQLMapper"/>
  1174. <Reference name="libsecondlife.dll"/>
  1175. <Reference name="MySql.Data.dll"/>
  1176. <Reference name="OpenSim.Framework.Console"/>
  1177. <Reference name="OpenSim.Region.Environment"/>
  1178. <Reference name="log4net.dll"/>
  1179. <Files>
  1180. <Match pattern="*.cs" recurse="true"/>
  1181. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1182. </Files>
  1183. </Project>
  1184. <Project name="OpenSim.Data.MSSQL" path="OpenSim/Data/MSSQL" 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="System" localCopy="false"/>
  1197. <Reference name="System.Xml"/>
  1198. <Reference name="System.Data"/>
  1199. <Reference name="OpenSim.Framework"/>
  1200. <Reference name="OpenSim.Data"/>
  1201. <Reference name="OpenSim.Region.Environment"/>
  1202. <Reference name="OpenSim.Framework.Console"/>
  1203. <Reference name="libsecondlife.dll"/>
  1204. <Reference name="log4net.dll"/>
  1205. <Files>
  1206. <Match pattern="*.cs" recurse="true"/>
  1207. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1208. </Files>
  1209. </Project>
  1210. <Project name="OpenSim.Data.SQLite" path="OpenSim/Data/SQLite" type="Library">
  1211. <Configuration name="Debug">
  1212. <Options>
  1213. <OutputPath>../../../bin/</OutputPath>
  1214. </Options>
  1215. </Configuration>
  1216. <Configuration name="Release">
  1217. <Options>
  1218. <OutputPath>../../../bin/</OutputPath>
  1219. </Options>
  1220. </Configuration>
  1221. <ReferencePath>../../../bin/</ReferencePath>
  1222. <Reference name="System" localCopy="false"/>
  1223. <Reference name="System.Xml"/>
  1224. <Reference name="System.Data"/>
  1225. <Reference name="System.Data.SQLite.dll"/>
  1226. <Reference name="OpenSim.Data"/>
  1227. <Reference name="OpenSim.Framework"/>
  1228. <Reference name="OpenSim.Framework.Console"/>
  1229. <Reference name="OpenSim.Region.Environment"/>
  1230. <Reference name="libsecondlife.dll"/>
  1231. <Reference name="Mono.Data.SqliteClient"/>
  1232. <Reference name="log4net.dll"/>
  1233. <Files>
  1234. <Match pattern="*.cs" recurse="true"/>
  1235. <Match path="Resources" pattern="*.sql" buildAction="EmbeddedResource"/>
  1236. </Files>
  1237. </Project>
  1238. <Project name="OpenSim.Data.NHibernate" path="OpenSim/Data/NHibernate" type="Library">
  1239. <Configuration name="Debug">
  1240. <Options>
  1241. <OutputPath>../../../bin/</OutputPath>
  1242. </Options>
  1243. </Configuration>
  1244. <Configuration name="Release">
  1245. <Options>
  1246. <OutputPath>../../../bin/</OutputPath>
  1247. </Options>
  1248. </Configuration>
  1249. <ReferencePath>../../../bin/</ReferencePath>
  1250. <Reference name="System" localCopy="false"/>
  1251. <Reference name="System.Xml"/>
  1252. <Reference name="System.Data"/>
  1253. <Reference name="OpenSim.Data"/>
  1254. <Reference name="OpenSim.Framework"/>
  1255. <Reference name="OpenSim.Framework.Console"/>
  1256. <Reference name="OpenSim.Region.Environment"/>
  1257. <Reference name="libsecondlife.dll"/>
  1258. <Reference name="NHibernate.dll"/>
  1259. <Reference name="NHibernate.Mapping.Attributes.dll"/>
  1260. <Reference name="log4net.dll"/>
  1261. <Files>
  1262. <Match pattern="*.cs" recurse="true"/>
  1263. <Match path="Resources" pattern="*.xml" buildAction="EmbeddedResource"/>
  1264. <!-- add more as you go -->
  1265. <Match path="Resources/SQLiteDialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1266. <Match path="Resources/MySQLDialect" pattern="*.sql" buildAction="EmbeddedResource"/>
  1267. </Files>
  1268. </Project>
  1269. <Project name="SmartThreadPool" path="ThirdParty/SmartThreadPool" type="Library">
  1270. <Configuration name="Debug">
  1271. <Options>
  1272. <OutputPath>../../bin/</OutputPath>
  1273. </Options>
  1274. </Configuration>
  1275. <Configuration name="Release">
  1276. <Options>
  1277. <OutputPath>../../bin/</OutputPath>
  1278. </Options>
  1279. </Configuration>
  1280. <ReferencePath>../../bin/</ReferencePath>
  1281. <Reference name="System" localCopy="false"/>
  1282. <Reference name="System.Xml"/>
  1283. <Reference name="System.Data"/>
  1284. <Reference name="System.Web"/>
  1285. <Files>
  1286. <Match pattern="*.cs" recurse="false"/>
  1287. </Files>
  1288. </Project>
  1289. <Project name="OpenSim.Region.ScriptEngine.Shared" path="OpenSim/Region/ScriptEngine/Shared" type="Library">
  1290. <Configuration name="Debug">
  1291. <Options>
  1292. <OutputPath>../../../../bin/</OutputPath>
  1293. </Options>
  1294. </Configuration>
  1295. <Configuration name="Release">
  1296. <Options>
  1297. <OutputPath>../../../../bin/</OutputPath>
  1298. </Options>
  1299. </Configuration>
  1300. <ReferencePath>../../../../bin/</ReferencePath>
  1301. <Reference name="System" localCopy="false"/>
  1302. <Reference name="System.Data" localCopy="false"/>
  1303. <Reference name="System.Web" localCopy="false"/>
  1304. <Reference name="System.Xml" localCopy="false"/>
  1305. <Reference name="libsecondlife.dll"/>
  1306. <Reference name="OpenSim" />
  1307. <Reference name="OpenSim.Framework"/>
  1308. <Reference name="OpenSim.Framework.Communications"/>
  1309. <Reference name="OpenSim.Region.Environment" />
  1310. <Reference name="OpenSim.Framework.Console"/>
  1311. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1312. <Reference name="Nini.dll" />
  1313. <Reference name="RAIL.dll"/>
  1314. <Reference name="Nini.dll" />
  1315. <Reference name="log4net.dll"/>
  1316. <Files>
  1317. <Match pattern="*.cs" recurse="false"/>
  1318. <Match path="../Interfaces" pattern="*.cs" recurse="false"/>
  1319. <Match path="Api/Interface" pattern="*.cs" recurse="false"/>
  1320. </Files>
  1321. </Project>
  1322. <Project name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime" path="OpenSim/Region/ScriptEngine/Shared/Api/Runtime" type="Library">
  1323. <Configuration name="Debug">
  1324. <Options>
  1325. <OutputPath>../../../../../../bin/</OutputPath>
  1326. </Options>
  1327. </Configuration>
  1328. <Configuration name="Release">
  1329. <Options>
  1330. <OutputPath>../../../../../../bin/</OutputPath>
  1331. </Options>
  1332. </Configuration>
  1333. <ReferencePath>../../../../../../bin/</ReferencePath>
  1334. <Reference name="System" localCopy="false"/>
  1335. <Reference name="System.Data" localCopy="false"/>
  1336. <Reference name="System.Web" localCopy="false"/>
  1337. <Reference name="System.Xml" localCopy="false"/>
  1338. <Reference name="libsecondlife.dll"/>
  1339. <Reference name="OpenSim" />
  1340. <Reference name="OpenSim.Framework"/>
  1341. <Reference name="OpenSim.Framework.Communications"/>
  1342. <Reference name="OpenSim.Region.Environment" />
  1343. <Reference name="OpenSim.Framework.Console"/>
  1344. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1345. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1346. <Reference name="Nini.dll" />
  1347. <Reference name="RAIL.dll"/>
  1348. <Reference name="Nini.dll" />
  1349. <Reference name="log4net.dll"/>
  1350. <Files>
  1351. <Match pattern="*.cs" recurse="false"/>
  1352. </Files>
  1353. </Project>
  1354. <Project name="OpenSim.Region.ScriptEngine.Shared.YieldProlog" path="OpenSim/Region/ScriptEngine/Shared/Api/Runtime/YieldProlog/" type="Library">
  1355. <Configuration name="Debug">
  1356. <Options>
  1357. <OutputPath>../../../../../../../bin/</OutputPath>
  1358. </Options>
  1359. </Configuration>
  1360. <Configuration name="Release">
  1361. <Options>
  1362. <OutputPath>../../../../../../../bin/</OutputPath>
  1363. </Options>
  1364. </Configuration>
  1365. <ReferencePath>../../../../../../../bin/</ReferencePath>
  1366. <Reference name="System" localCopy="false"/>
  1367. <Reference name="System.Data" localCopy="false"/>
  1368. <Reference name="System.Web" localCopy="false"/>
  1369. <Reference name="System.Xml" localCopy="false"/>
  1370. <Reference name="libsecondlife.dll"/>
  1371. <Reference name="OpenSim" />
  1372. <Reference name="OpenSim.Framework"/>
  1373. <Reference name="OpenSim.Framework.Communications"/>
  1374. <Reference name="OpenSim.Region.Environment" />
  1375. <Reference name="OpenSim.Framework.Console"/>
  1376. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1377. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1378. <Reference name="Nini.dll" />
  1379. <Reference name="RAIL.dll"/>
  1380. <Reference name="Nini.dll" />
  1381. <Reference name="log4net.dll"/>
  1382. <Files>
  1383. <Match pattern="*.cs" recurse="false"/>
  1384. </Files>
  1385. </Project>
  1386. <Project name="OpenSim.Region.ScriptEngine.Shared.Api" path="OpenSim/Region/ScriptEngine/Shared/Api/Implementation" type="Library">
  1387. <Configuration name="Debug">
  1388. <Options>
  1389. <OutputPath>../../../../../../bin/</OutputPath>
  1390. </Options>
  1391. </Configuration>
  1392. <Configuration name="Release">
  1393. <Options>
  1394. <OutputPath>../../../../../../bin/</OutputPath>
  1395. </Options>
  1396. </Configuration>
  1397. <ReferencePath>../../../../../../bin/</ReferencePath>
  1398. <Reference name="System" localCopy="false"/>
  1399. <Reference name="System.Data" localCopy="false"/>
  1400. <Reference name="System.Web" localCopy="false"/>
  1401. <Reference name="System.Xml" localCopy="false"/>
  1402. <Reference name="libsecondlife.dll"/>
  1403. <Reference name="OpenSim" />
  1404. <Reference name="OpenSim.Framework"/>
  1405. <Reference name="OpenSim.Framework.Communications"/>
  1406. <Reference name="OpenSim.Region.Environment" />
  1407. <Reference name="OpenSim.Framework.Console"/>
  1408. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1409. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api.Runtime"/>
  1410. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1411. <Reference name="Nini.dll" />
  1412. <Reference name="RAIL.dll"/>
  1413. <Reference name="Nini.dll" />
  1414. <Reference name="log4net.dll"/>
  1415. <Files>
  1416. <Match pattern="*.cs" recurse="true"/>
  1417. </Files>
  1418. </Project>
  1419. <Project name="OpenSim.Region.ScriptEngine.Shared.CodeTools" path="OpenSim/Region/ScriptEngine/Shared/CodeTools" type="Library">
  1420. <Configuration name="Debug">
  1421. <Options>
  1422. <OutputPath>../../../../../bin/</OutputPath>
  1423. </Options>
  1424. </Configuration>
  1425. <Configuration name="Release">
  1426. <Options>
  1427. <OutputPath>../../../../../bin/</OutputPath>
  1428. </Options>
  1429. </Configuration>
  1430. <ReferencePath>../../../../../bin/</ReferencePath>
  1431. <Reference name="System" localCopy="false"/>
  1432. <Reference name="Microsoft.JScript"/>
  1433. <Reference name="OpenSim.Framework" />
  1434. <Reference name="OpenSim.Region.Environment" />
  1435. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1436. <Reference name="OpenSim.Region.ScriptEngine.Shared.YieldProlog"/>
  1437. <Reference name="OpenSim.Region.Environment" />
  1438. <Reference name="libsecondlife.dll"/>
  1439. <Reference name="Nini.dll" />
  1440. <Reference name="RAIL.dll"/>
  1441. <Reference name="log4net.dll"/>
  1442. <Reference name="Tools.dll"/>
  1443. <Files>
  1444. <Match pattern="*.cs" recurse="true"/>
  1445. </Files>
  1446. </Project>
  1447. <Project name="OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests" path="OpenSim/Tests/OpenSim/Region/ScriptEngine/Shared/CodeTools" type="Library">
  1448. <Configuration name="Debug">
  1449. <Options>
  1450. <OutputPath>../../../../../../../bin/</OutputPath>
  1451. </Options>
  1452. </Configuration>
  1453. <Configuration name="Release">
  1454. <Options>
  1455. <OutputPath>../../../../../../../bin/</OutputPath>
  1456. </Options>
  1457. </Configuration>
  1458. <ReferencePath>../../../../../../../bin/</ReferencePath>
  1459. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1460. <Reference name="nunit.framework.dll" />
  1461. <Reference name="Tools.dll" />
  1462. <Files>
  1463. <Match pattern="*.cs" recurse="false"/>
  1464. </Files>
  1465. </Project>
  1466. <Project name="OpenSim.Region.ScriptEngine.XEngine" path="OpenSim/Region/ScriptEngine/XEngine" type="Library">
  1467. <Configuration name="Debug">
  1468. <Options>
  1469. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1470. </Options>
  1471. </Configuration>
  1472. <Configuration name="Release">
  1473. <Options>
  1474. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1475. </Options>
  1476. </Configuration>
  1477. <ReferencePath>../../../../bin/</ReferencePath>
  1478. <Reference name="System" localCopy="false"/>
  1479. <Reference name="System.Data" localCopy="false"/>
  1480. <Reference name="System.Web" localCopy="false"/>
  1481. <Reference name="System.Xml" localCopy="false"/>
  1482. <Reference name="libsecondlife.dll"/>
  1483. <Reference name="OpenSim" />
  1484. <Reference name="OpenSim.Framework"/>
  1485. <Reference name="OpenSim.Framework.Communications"/>
  1486. <Reference name="OpenSim.Region.Environment" />
  1487. <Reference name="OpenSim.Framework.Console"/>
  1488. <Reference name="OpenSim.Region.ScriptEngine.Shared"/>
  1489. <Reference name="OpenSim.Region.ScriptEngine.Shared.CodeTools"/>
  1490. <Reference name="OpenSim.Region.ScriptEngine.Shared.Api"/>
  1491. <Reference name="SmartThreadPool"/>
  1492. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1493. <Reference name="Nini.dll" />
  1494. <Reference name="RAIL.dll"/>
  1495. <Reference name="log4net.dll"/>
  1496. <Files>
  1497. <Match pattern="*.cs" recurse="true"/>
  1498. </Files>
  1499. </Project>
  1500. <!-- OGS projects -->
  1501. <Project name="OpenSim.Grid.GridServer" path="OpenSim/Grid/GridServer" type="Exe">
  1502. <Configuration name="Debug">
  1503. <Options>
  1504. <OutputPath>../../../bin/</OutputPath>
  1505. </Options>
  1506. </Configuration>
  1507. <Configuration name="Release">
  1508. <Options>
  1509. <OutputPath>../../../bin/</OutputPath>
  1510. </Options>
  1511. </Configuration>
  1512. <ReferencePath>../../../bin/</ReferencePath>
  1513. <Reference name="System" localCopy="false"/>
  1514. <Reference name="System.Data" localCopy="false"/>
  1515. <Reference name="System.Xml" localCopy="false"/>
  1516. <Reference name="Mono.Addins.dll" />
  1517. <Reference name="OpenSim.Framework"/>
  1518. <Reference name="OpenSim.Framework.Communications"/>
  1519. <Reference name="OpenSim.Framework.Console"/>
  1520. <Reference name="OpenSim.Framework.Servers"/>
  1521. <Reference name="OpenSim.Data"/>
  1522. <Reference name="OpenSim.Data.MySQL"/>
  1523. <Reference name="libsecondlife.dll"/>
  1524. <Reference name="XMLRPC.dll"/>
  1525. <Reference name="log4net.dll"/>
  1526. <Files>
  1527. <Match pattern="*.cs" recurse="true"/>
  1528. </Files>
  1529. </Project>
  1530. <Project name="OpenSim.Grid.AssetServer" path="OpenSim/Grid/AssetServer" type="Exe">
  1531. <Configuration name="Debug">
  1532. <Options>
  1533. <OutputPath>../../../bin/</OutputPath>
  1534. </Options>
  1535. </Configuration>
  1536. <Configuration name="Release">
  1537. <Options>
  1538. <OutputPath>../../../bin/</OutputPath>
  1539. </Options>
  1540. </Configuration>
  1541. <ReferencePath>../../../bin/</ReferencePath>
  1542. <Reference name="System" localCopy="false"/>
  1543. <Reference name="System.Data" localCopy="false"/>
  1544. <Reference name="System.Xml" localCopy="false"/>
  1545. <Reference name="OpenSim.Framework"/>
  1546. <Reference name="OpenSim.Framework.AssetLoader.Filesystem"/>
  1547. <Reference name="OpenSim.Framework.Console"/>
  1548. <Reference name="OpenSim.Framework.Servers"/>
  1549. <Reference name="OpenSim.Framework.Communications"/>
  1550. <Reference name="OpenSim.Framework.Statistics"/>
  1551. <Reference name="libsecondlife.dll"/>
  1552. <Reference name="log4net.dll"/>
  1553. <Files>
  1554. <Match pattern="*.cs" recurse="true"/>
  1555. </Files>
  1556. </Project>
  1557. <Project name="OpenSim.Grid.UserServer" path="OpenSim/Grid/UserServer" type="Exe">
  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.Xml" localCopy="false"/>
  1572. <Reference name="OpenSim.Framework"/>
  1573. <Reference name="OpenSim.Framework.Console"/>
  1574. <Reference name="OpenSim.Framework.Communications"/>
  1575. <Reference name="OpenSim.Data"/>
  1576. <Reference name="OpenSim.Framework.Servers"/>
  1577. <Reference name="OpenSim.Framework.Statistics"/>
  1578. <Reference name="libsecondlife.dll"/>
  1579. <Reference name="XMLRPC.dll"/>
  1580. <Reference name="log4net.dll"/>
  1581. <Files>
  1582. <Match pattern="*.cs" recurse="true"/>
  1583. </Files>
  1584. </Project>
  1585. <Project name="OpenSim.Grid.InventoryServer" path="OpenSim/Grid/InventoryServer" type="Exe">
  1586. <Configuration name="Debug">
  1587. <Options>
  1588. <OutputPath>../../../bin/</OutputPath>
  1589. </Options>
  1590. </Configuration>
  1591. <Configuration name="Release">
  1592. <Options>
  1593. <OutputPath>../../../bin/</OutputPath>
  1594. </Options>
  1595. </Configuration>
  1596. <ReferencePath>../../../bin/</ReferencePath>
  1597. <Reference name="System" localCopy="false"/>
  1598. <Reference name="System.Data" localCopy="false"/>
  1599. <Reference name="System.Xml" localCopy="false"/>
  1600. <Reference name="OpenSim.Framework"/>
  1601. <Reference name="OpenSim.Framework.Console"/>
  1602. <Reference name="OpenSim.Framework.Communications"/>
  1603. <Reference name="OpenSim.Data"/>
  1604. <Reference name="OpenSim.Framework.Servers"/>
  1605. <Reference name="libsecondlife.dll"/>
  1606. <Reference name="log4net.dll"/>
  1607. <Files>
  1608. <Match pattern="*.cs" recurse="true"/>
  1609. </Files>
  1610. </Project>
  1611. <Project name="OpenSim.Grid.MessagingServer" path="OpenSim/Grid/MessagingServer" type="Exe">
  1612. <Configuration name="Debug">
  1613. <Options>
  1614. <OutputPath>../../../bin/</OutputPath>
  1615. </Options>
  1616. </Configuration>
  1617. <Configuration name="Release">
  1618. <Options>
  1619. <OutputPath>../../../bin/</OutputPath>
  1620. </Options>
  1621. </Configuration>
  1622. <ReferencePath>../../../bin/</ReferencePath>
  1623. <Reference name="System" localCopy="false"/>
  1624. <Reference name="System.Data" localCopy="false"/>
  1625. <Reference name="System.Xml" localCopy="false"/>
  1626. <Reference name="OpenSim.Framework"/>
  1627. <Reference name="OpenSim.Framework.Console"/>
  1628. <Reference name="OpenSim.Framework.Communications"/>
  1629. <Reference name="OpenSim.Data"/>
  1630. <Reference name="OpenSim.Framework.Servers"/>
  1631. <Reference name="libsecondlife.dll"/>
  1632. <Reference name="XMLRPC.dll"/>
  1633. <Reference name="log4net.dll"/>
  1634. <Files>
  1635. <Match pattern="*.cs" recurse="true"/>
  1636. </Files>
  1637. </Project>
  1638. <Project name="OpenSim.Region.ScriptEngine.Common" path="OpenSim/Region/ScriptEngine/Common" type="Library">
  1639. <Configuration name="Debug">
  1640. <Options>
  1641. <OutputPath>../../../../bin/</OutputPath>
  1642. </Options>
  1643. </Configuration>
  1644. <Configuration name="Release">
  1645. <Options>
  1646. <OutputPath>../../../../bin/</OutputPath>
  1647. </Options>
  1648. </Configuration>
  1649. <ReferencePath>../../../../bin/</ReferencePath>
  1650. <ReferencePath>../../../../bin/ScriptEngines/</ReferencePath>
  1651. <Reference name="System" localCopy="false"/>
  1652. <Reference name="System.Data" localCopy="false"/>
  1653. <Reference name="System.Web" localCopy="false"/>
  1654. <Reference name="System.Xml" localCopy="false"/>
  1655. <Reference name="libsecondlife.dll"/>
  1656. <Reference name="OpenSim" />
  1657. <Reference name="OpenSim.Framework"/>
  1658. <Reference name="OpenSim.Framework.Communications"/>
  1659. <Reference name="OpenSim.Region.Environment" />
  1660. <Reference name="OpenSim.Framework.Console"/>
  1661. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1662. <Reference name="Nini.dll" />
  1663. <Reference name="RAIL.dll"/>
  1664. <Reference name="OpenSim.Framework.Console"/>
  1665. <Reference name="Nini.dll" />
  1666. <Reference name="log4net.dll"/>
  1667. <Files>
  1668. <Match pattern="*.cs" recurse="true"/>
  1669. </Files>
  1670. </Project>
  1671. <Project name="OpenSim.Region.ScriptEngine.Common.Tests" path="OpenSim/Tests/OpenSim/Region/ScriptEngine/Common" type="Library">
  1672. <Configuration name="Debug">
  1673. <Options>
  1674. <OutputPath>../../../../../../bin/</OutputPath>
  1675. </Options>
  1676. </Configuration>
  1677. <Configuration name="Release">
  1678. <Options>
  1679. <OutputPath>../../../../../../bin/</OutputPath>
  1680. </Options>
  1681. </Configuration>
  1682. <ReferencePath>../../../../../../bin/</ReferencePath>
  1683. <Reference name="OpenSim.Region.ScriptEngine.Common"/>
  1684. <Reference name="OpenSim.Tests.Common"/>
  1685. <Reference name="nunit.framework.dll" />
  1686. <Files>
  1687. <Match pattern="*.cs" recurse="false"/>
  1688. </Files>
  1689. </Project>
  1690. <Project name="OpenSim.Region.ScriptEngine.DotNetEngine" path="OpenSim/Region/ScriptEngine/DotNetEngine" type="Library">
  1691. <Configuration name="Debug">
  1692. <Options>
  1693. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1694. </Options>
  1695. </Configuration>
  1696. <Configuration name="Release">
  1697. <Options>
  1698. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1699. </Options>
  1700. </Configuration>
  1701. <ReferencePath>../../../../bin/</ReferencePath>
  1702. <ReferencePath>../../../../bin/ScriptEngines/</ReferencePath>
  1703. <Reference name="System" localCopy="false"/>
  1704. <Reference name="System.Data" localCopy="false"/>
  1705. <Reference name="System.Xml" localCopy="false"/>
  1706. <Reference name="System.Runtime.Remoting" localCopy="false"/>
  1707. <Reference name="libsecondlife.dll"/>
  1708. <Reference name="RAIL.dll"/>
  1709. <Reference name="OpenSim.Framework"/>
  1710. <Reference name="OpenSim.Framework.Console"/>
  1711. <Reference name="OpenSim.Region.Environment" />
  1712. <Reference name="OpenSim.Region.ScriptEngine.Common"/>
  1713. <Reference name="Microsoft.JScript"/>
  1714. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1715. <Reference name="Nini.dll" />
  1716. <Reference name="log4net.dll"/>
  1717. <Reference name="Tools.dll"/>
  1718. <Files>
  1719. <Match pattern="*.cs" recurse="true"/>
  1720. </Files>
  1721. </Project>
  1722. <Project name="OpenSim.Grid.ScriptServer" path="OpenSim/Grid/ScriptServer" type="Exe">
  1723. <Configuration name="Debug">
  1724. <Options>
  1725. <OutputPath>../../../bin/</OutputPath>
  1726. </Options>
  1727. </Configuration>
  1728. <Configuration name="Release">
  1729. <Options>
  1730. <OutputPath>../../../bin/</OutputPath>
  1731. </Options>
  1732. </Configuration>
  1733. <ReferencePath>../../../bin/</ReferencePath>
  1734. <ReferencePath>../../../bin/ScriptEngines/</ReferencePath>
  1735. <Reference name="System" localCopy="false"/>
  1736. <Reference name="System.Data" localCopy="false"/>
  1737. <Reference name="System.Runtime.Remoting" localCopy="false"/>
  1738. <Reference name="System.Xml" localCopy="false"/>
  1739. <Reference name="OpenSim"/>
  1740. <Reference name="OpenSim.Framework"/>
  1741. <Reference name="OpenSim.Framework.Console"/>
  1742. <Reference name="OpenSim.Framework.Communications"/>
  1743. <Reference name="OpenSim.Framework.Servers"/>
  1744. <Reference name="OpenSim.Data"/>
  1745. <Reference name="OpenSim.Region.Environment" />
  1746. <Reference name="OpenSim.Region.ScriptEngine.Common"/>
  1747. <Reference name="libsecondlife.dll"/>
  1748. <Reference name="Axiom.MathLib.dll" localCopy="false"/>
  1749. <Reference name="XMLRPC.dll"/>
  1750. <Reference name="Nini.dll" />
  1751. <Reference name="log4net.dll"/>
  1752. <Files>
  1753. <Match pattern="*.cs" recurse="true"/>
  1754. </Files>
  1755. </Project>
  1756. <Project name="OpenSim.Region.ScriptEngine.RemoteServer" path="OpenSim/Region/ScriptEngine/RemoteServer" type="Library">
  1757. <Configuration name="Debug">
  1758. <Options>
  1759. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1760. </Options>
  1761. </Configuration>
  1762. <Configuration name="Release">
  1763. <Options>
  1764. <OutputPath>../../../../bin/ScriptEngines/</OutputPath>
  1765. </Options>
  1766. </Configuration>
  1767. <ReferencePath>../../../../bin/</ReferencePath>
  1768. <ReferencePath>../../../../bin/ScriptEngines/</ReferencePath>
  1769. <Reference name="System" localCopy="false"/>
  1770. <Reference name="System.Data" localCopy="false"/>
  1771. <Reference name="System.Xml" localCopy="false"/>
  1772. <Reference name="System.Runtime.Remoting" localCopy="false"/>
  1773. <Reference name="OpenSim.Region.Environment" />
  1774. <Reference name="libsecondlife.dll"/>
  1775. <Reference name="OpenSim.Framework"/>
  1776. <Reference name="OpenSim.Framework.Console"/>
  1777. <Reference name="OpenSim.Region.ScriptEngine.Common"/>
  1778. <Reference name="OpenSim.Region.ScriptEngine.DotNetEngine"/>
  1779. <Reference name="Nini.dll" />
  1780. <Reference name="log4net.dll"/>
  1781. <!-- Reference name="OpenSim.Grid.ScriptServer"/ -->
  1782. <Files>
  1783. <Match pattern="*.cs" recurse="true"/>
  1784. </Files>
  1785. </Project>
  1786. <!-- Tests -->
  1787. <Project name="OpenSim.Tests.UserServer.Stress" path="OpenSim/Tests/UserServer/Stress" type="Exe">
  1788. <Configuration name="Debug">
  1789. <Options>
  1790. <OutputPath>../../../../bin/tests/stress</OutputPath>
  1791. </Options>
  1792. </Configuration>
  1793. <Configuration name="Release">
  1794. <Options>
  1795. <OutputPath>../../../../bin/tests/stress</OutputPath>
  1796. </Options>
  1797. </Configuration>
  1798. <ReferencePath>../../../../bin</ReferencePath>
  1799. <Reference name="System" localCopy="false"/>
  1800. <Reference name="log4net.dll"/>
  1801. <Files>
  1802. <Match pattern="*.cs" recurse="true"/>
  1803. </Files>
  1804. </Project>
  1805. <!-- Tools -->
  1806. <Project name="OpenSimExport" path="OpenSim/Tools/Export" type="Exe">
  1807. <Configuration name="Debug">
  1808. <Options>
  1809. <OutputPath>../../../bin/</OutputPath>
  1810. </Options>
  1811. </Configuration>
  1812. <Configuration name="Release">
  1813. <Options>
  1814. <OutputPath>../../../bin/</OutputPath>
  1815. </Options>
  1816. </Configuration>
  1817. <ReferencePath>../../../bin/</ReferencePath>
  1818. <Reference name="System" localCopy="false"/>
  1819. <Reference name="System.Xml"/>
  1820. <Reference name="Mono.Addins.dll" />
  1821. <Reference name="libsecondlife.dll"/>
  1822. <Reference name="Axiom.MathLib.dll"/>
  1823. <Reference name="OpenSim"/>
  1824. <Reference name="OpenSim.Framework"/>
  1825. <Reference name="OpenSim.Data"/>
  1826. <Reference name="OpenSim.Framework.Console"/>
  1827. <Reference name="OpenSim.Framework.Statistics"/>
  1828. <Reference name="OpenSim.Region.Physics.Manager"/>
  1829. <Reference name="OpenSim.Framework.Servers"/>
  1830. <Reference name="OpenSim.Region.Environment"/>
  1831. <Reference name="OpenSim.Region.ClientStack"/>
  1832. <Reference name="OpenSim.Framework.Communications"/>
  1833. <Reference name="OpenSim.Region.Communications.OGS1"/>
  1834. <Reference name="XMLRPC.dll"/>
  1835. <Reference name="OpenSim.Region.Communications.Local"/>
  1836. <Reference name="Nini.dll" />
  1837. <Reference name="log4net.dll"/>
  1838. <Files>
  1839. <Match pattern="*.cs" recurse="true"/>
  1840. </Files>
  1841. </Project>
  1842. <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe">
  1843. <Configuration name="Debug">
  1844. <Options>
  1845. <OutputPath>../../../bin/</OutputPath>
  1846. </Options>
  1847. </Configuration>
  1848. <Configuration name="Release">
  1849. <Options>
  1850. <OutputPath>../../../bin/</OutputPath>
  1851. </Options>
  1852. </Configuration>
  1853. <ReferencePath>../../../bin/</ReferencePath>
  1854. <Reference name="System" localCopy="false"/>
  1855. <Reference name="libsecondlife.dll"/>
  1856. <Reference name="OpenSim.Framework"/>
  1857. <Reference name="OpenSim.Framework.Console"/>
  1858. <Reference name="Nini.dll" />
  1859. <Reference name="log4net.dll"/>
  1860. <Files>
  1861. <Match pattern="*.cs" recurse="true"/>
  1862. </Files>
  1863. </Project>
  1864. <Project name="OpenSim.ApplicationPlugins.RegionProxy" path="ThirdParty/3Di/RegionProxy" type="Library">
  1865. <Configuration name="Debug">
  1866. <Options>
  1867. <OutputPath>../../../bin/</OutputPath>
  1868. </Options>
  1869. </Configuration>
  1870. <Configuration name="Release">
  1871. <Options>
  1872. <OutputPath>../../../bin/</OutputPath>
  1873. </Options>
  1874. </Configuration>
  1875. <ReferencePath>../../../bin/</ReferencePath>
  1876. <Reference name="log4net.dll" />
  1877. <Reference name="Mono.Addins.dll" />
  1878. <Reference name="System"/>
  1879. <Reference name="System.Xml"/>
  1880. <Reference name="XMLRPC.dll"/>
  1881. <Reference name="Nini.dll" />
  1882. <Reference name="OpenSim"/>
  1883. <Reference name="OpenSim.Framework"/>
  1884. <Reference name="OpenSim.Data"/>
  1885. <Reference name="OpenSim.Framework.Servers"/>
  1886. <Reference name="OpenSim.Framework.Console"/>
  1887. <Reference name="OpenSim.Region.ClientStack"/>
  1888. <Files>
  1889. <Match pattern="*.cs" recurse="true"/>
  1890. </Files>
  1891. </Project>
  1892. <Project name="OpenSim.ApplicationPlugins.LoadBalancer" path="ThirdParty/3Di/LoadBalancer" type="Library">
  1893. <Configuration name="Debug">
  1894. <Options>
  1895. <OutputPath>../../../bin/</OutputPath>
  1896. </Options>
  1897. </Configuration>
  1898. <Configuration name="Release">
  1899. <Options>
  1900. <OutputPath>../../../bin/</OutputPath>
  1901. </Options>
  1902. </Configuration>
  1903. <ReferencePath>../../../bin/</ReferencePath>
  1904. <Reference name="log4net.dll" />
  1905. <Reference name="Mono.Addins.dll" />
  1906. <Reference name="System"/>
  1907. <Reference name="System.Xml"/>
  1908. <Reference name="XMLRPC.dll"/>
  1909. <Reference name="Nini.dll" />
  1910. <Reference name="OpenSim"/>
  1911. <Reference name="OpenSim.Framework"/>
  1912. <Reference name="OpenSim.Data"/>
  1913. <Reference name="OpenSim.Framework.Servers"/>
  1914. <Reference name="OpenSim.Framework.Console"/>
  1915. <Reference name="OpenSim.Region.Environment"/>
  1916. <Reference name="OpenSim.Region.ClientStack"/>
  1917. <Reference name="OpenSim.Region.ClientStack.LindenUDP"/>
  1918. <Reference name="OpenSim.Region.Physics.Manager"/>
  1919. <Reference name="libsecondlife.dll"/>
  1920. <Files>
  1921. <Match pattern="*.cs" recurse="true"/>
  1922. </Files>
  1923. </Project>
  1924. <!-- Test Suite -->
  1925. <Project name="OpenSim.TestSuite" path="OpenSim/TestSuite" type="Exe">
  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. <Reference name="System" localCopy="false"/>
  1938. <Reference name="libsecondlife.dll"/>
  1939. <Reference name="OpenSim.Framework"/>
  1940. <Reference name="OpenSim.Framework.Console"/>
  1941. <Reference name="Nini.dll" />
  1942. <Reference name="log4net.dll"/>
  1943. <Files>
  1944. <Match pattern="*.cs" recurse="true"/>
  1945. </Files>
  1946. </Project>
  1947. </Solution>
  1948. <!-- Prebuild tool -->
  1949. <Solution name="Prebuild" path="Prebuild/" >
  1950. <Configuration name="Debug">
  1951. <Options>
  1952. <CompilerDefines>DEBUG;TRACE</CompilerDefines>
  1953. <OptimizeCode>false</OptimizeCode>
  1954. <OutputPath>bin/Debug</OutputPath>
  1955. <DebugInformation>true</DebugInformation>
  1956. <SuppressWarnings>1595</SuppressWarnings>
  1957. </Options>
  1958. </Configuration>
  1959. <Configuration name="Release">
  1960. <Options>
  1961. <CompilerDefines>TRACE</CompilerDefines>
  1962. <OutputPath>bin/Release</OutputPath>
  1963. <OptimizeCode>true</OptimizeCode>
  1964. <DebugInformation>false</DebugInformation>
  1965. <SuppressWarnings>1595</SuppressWarnings>
  1966. </Options>
  1967. </Configuration>
  1968. <Project name="Prebuild" path="src/" language="C#" assemblyName="Prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild">
  1969. <Configuration name="Debug">
  1970. <Options>
  1971. <CompilerDefines>DEBUG;TRACE</CompilerDefines>
  1972. <OptimizeCode>false</OptimizeCode>
  1973. <OutputPath>..\..\bin\</OutputPath>
  1974. <DebugInformation>true</DebugInformation>
  1975. <KeyFile>Prebuild.snk</KeyFile>
  1976. <SuppressWarnings>1595</SuppressWarnings>
  1977. </Options>
  1978. </Configuration>
  1979. <Configuration name="Release">
  1980. <Options>
  1981. <CompilerDefines>TRACE</CompilerDefines>
  1982. <OutputPath>..\..\bin\</OutputPath>
  1983. <OptimizeCode>true</OptimizeCode>
  1984. <DebugInformation>false</DebugInformation>
  1985. <KeyFile>Prebuild.snk</KeyFile>
  1986. <SuppressWarnings>1595</SuppressWarnings>
  1987. </Options>
  1988. </Configuration>
  1989. <ReferencePath>../../bin/</ReferencePath>
  1990. <Reference name="System.EnterpriseServices" />
  1991. <Reference name="System.Xml" />
  1992. <Reference name="System" />
  1993. <Files>
  1994. <Match pattern="App.ico" buildAction="EmbeddedResource"/>
  1995. <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/>
  1996. <Match pattern="*.cs" recurse="true"/>
  1997. </Files>
  1998. </Project>
  1999. </Solution>
  2000. </Prebuild>