aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml
diff options
context:
space:
mode:
authorMW2007-11-04 13:48:15 +0000
committerMW2007-11-04 13:48:15 +0000
commit039f2c46c057569463ba970f4b3f33990debf7e2 (patch)
treec73edc783228c43080a5a0878fd8f8b62af5b487 /prebuild.xml
parentadd a IAssetProvider.CommitAssets() call to the grid asset server, when a ass... (diff)
downloadopensim-SC_OLD-039f2c46c057569463ba970f4b3f33990debf7e2.zip
opensim-SC_OLD-039f2c46c057569463ba970f4b3f33990debf7e2.tar.gz
opensim-SC_OLD-039f2c46c057569463ba970f4b3f33990debf7e2.tar.bz2
opensim-SC_OLD-039f2c46c057569463ba970f4b3f33990debf7e2.tar.xz
Added support for OpenSim application plugins (as requested by Adam), which use Mono.addins for loading/management. (which is a pure .net solution so works on both Mono and MS .net, and is under the MIT license, will add the source code for the library later). I also suggest we look into switching to using Mono.addins for our Region module loading management.
A little bit more refactoring of Scene.
Diffstat (limited to 'prebuild.xml')
-rw-r--r--prebuild.xml27
1 files changed, 26 insertions, 1 deletions
diff --git a/prebuild.xml b/prebuild.xml
index 307e40b..b3ca211 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -649,7 +649,6 @@
649 </Files> 649 </Files>
650 </Project> 650 </Project>
651 651
652
653 <!-- OpenSim app --> 652 <!-- OpenSim app -->
654 <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe"> 653 <Project name="OpenSim" path="OpenSim/Region/Application" type="Exe">
655 <Configuration name="Debug"> 654 <Configuration name="Debug">
@@ -684,6 +683,32 @@
684 <Reference name="XMLRPC.dll"/> 683 <Reference name="XMLRPC.dll"/>
685 <Reference name="OpenSim.Region.Communications.Local"/> 684 <Reference name="OpenSim.Region.Communications.Local"/>
686 <Reference name="Nini.dll" /> 685 <Reference name="Nini.dll" />
686 <Reference name="mono-addins.exe" />
687 <Files>
688 <Match pattern="*.cs" recurse="true"/>
689 </Files>
690 </Project>
691
692 <Project name="OpenSim.ApplicationPlugins.Example" path="OpenSim/ApplicationPlugins/Example" type="Library">
693 <Configuration name="Debug">
694 <Options>
695 <OutputPath>../../../bin/</OutputPath>
696 </Options>
697 </Configuration>
698 <Configuration name="Release">
699 <Options>
700 <OutputPath>../../../bin/</OutputPath>
701 </Options>
702 </Configuration>
703
704 <ReferencePath>../../../bin/</ReferencePath>
705 <Reference name="System"/>
706 <Reference name="System.Xml"/>
707 <Reference name="libsecondlife.dll" />
708 <Reference name="OpenSim"/>
709 <Reference name="OpenSim.Region.ClientStack"/>
710 <Reference name="OpenSim.Framework.Console"/>
711 <Reference name="mono-addins.exe" />
687 <Files> 712 <Files>
688 <Match pattern="*.cs" recurse="true"/> 713 <Match pattern="*.cs" recurse="true"/>
689 </Files> 714 </Files>