diff options
author | Mike Mazur | 2009-02-16 02:25:15 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-16 02:25:15 +0000 |
commit | b3c0cea0246904d4833b29de8bfd9b2a58bcca2d (patch) | |
tree | 5e0452e52cafd3ad31f7ce1427e60a51f2b3f701 /prebuild.xml | |
parent | - add section to prebuild.xml for building (diff) | |
download | opensim-SC_OLD-b3c0cea0246904d4833b29de8bfd9b2a58bcca2d.zip opensim-SC_OLD-b3c0cea0246904d4833b29de8bfd9b2a58bcca2d.tar.gz opensim-SC_OLD-b3c0cea0246904d4833b29de8bfd9b2a58bcca2d.tar.bz2 opensim-SC_OLD-b3c0cea0246904d4833b29de8bfd9b2a58bcca2d.tar.xz |
- add OpenSim.Grid.AssetServer.Plugins.OpenSim as a dependency for OpenSim.Data.*.addin.xml
- remove OpenSim.Grid.NewAssetServer.exe from bin/OpenSim.Data.addin.xml
- add prebuild.xml section for OpenSim.Grid.AssetServer.Plugins.OpenSim.dll
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/prebuild.xml b/prebuild.xml index b74b9ab..c157cdf 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -779,8 +779,38 @@ | |||
779 | <Files> | 779 | <Files> |
780 | <Match pattern="*.cs" recurse="false"/> | 780 | <Match pattern="*.cs" recurse="false"/> |
781 | <Match path="Extensions" pattern="*.cs" recurse="false"/> | 781 | <Match path="Extensions" pattern="*.cs" recurse="false"/> |
782 | <Match path="Plugins" pattern="*.cs" recurse="false"/> | 782 | <!--Match path="Resources" pattern="*.addin.xml" buildAction="EmbeddedResource" recurse="true"/--> |
783 | <Match pattern="*.addin.xml" path="Resources" buildAction="EmbeddedResource" recurse="true"/> | 783 | </Files> |
784 | </Project> | ||
785 | |||
786 | <Project name="OpenSim.Grid.AssetServer.Plugins.OpenSim" path="OpenSim/Grid/NewAssetServer/Plugins/OpenSim" type="Library"> | ||
787 | <Configuration name="Debug"> | ||
788 | <Options> | ||
789 | <OutputPath>../../../../../bin/</OutputPath> | ||
790 | </Options> | ||
791 | </Configuration> | ||
792 | <Configuration name="Release"> | ||
793 | <Options> | ||
794 | <OutputPath>../../../../../bin/</OutputPath> | ||
795 | </Options> | ||
796 | </Configuration> | ||
797 | |||
798 | <ReferencePath>../../../../../bin/</ReferencePath> | ||
799 | <Reference name="System" /> | ||
800 | <Reference name="System.Data" /> | ||
801 | <Reference name="OpenSim.Framework" /> | ||
802 | <Reference name="OpenSim.Grid.NewAssetServer" /> | ||
803 | <Reference name="OpenMetaverseTypes"/> | ||
804 | <Reference name="OpenMetaverse.StructuredData2" /> | ||
805 | <Reference name="HttpServer2"/> | ||
806 | |||
807 | <!-- Remove these eventually --> | ||
808 | <Reference name="MySql.Data" /> | ||
809 | <Reference name="ExtensionLoader" /> | ||
810 | |||
811 | <Files> | ||
812 | <Match pattern="*.cs" recurse="false" /> | ||
813 | <Match path="Resources" pattern="*.addin.xml" buildAction="EmbeddedResource" recurse="true" /> | ||
784 | </Files> | 814 | </Files> |
785 | </Project> | 815 | </Project> |
786 | 816 | ||