diff options
author | Diva Canto | 2015-01-06 21:24:44 -0800 |
---|---|---|
committer | Diva Canto | 2015-01-06 21:24:44 -0800 |
commit | 8e562f04d1576bd51138ac656f796ba18965fdcf (patch) | |
tree | c06dce809cb04c971ac545e9793d885ea555e611 /prebuild.xml | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-8e562f04d1576bd51138ac656f796ba18965fdcf.zip opensim-SC_OLD-8e562f04d1576bd51138ac656f796ba18965fdcf.tar.gz opensim-SC_OLD-8e562f04d1576bd51138ac656f796ba18965fdcf.tar.bz2 opensim-SC_OLD-8e562f04d1576bd51138ac656f796ba18965fdcf.tar.xz |
Donation of robust network connectors for estate service, as promised. This allows to have one central database for estates without having to open the MySql port. This is off by default, so not to disturb everyone's existing installations. To use it, see GridCommon.ini.example [EstateDataStore] section and Robust*.ini.example's new additions.
Note that I also made things consistent by removing both the EstateDataService and the SimulationService into their own dlls, just like all other services. They really didn't belong in Services.Connectors, since everything in that component is about network connectors to robust backends. We may have too many dlls, and at some point it might not be a bad idea to merge all services into one single dll, since they all have more or less the same dependencies.
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 663d4da..771b7c7 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -839,6 +839,40 @@ | |||
839 | </Files> | 839 | </Files> |
840 | </Project> | 840 | </Project> |
841 | 841 | ||
842 | <Project frameworkVersion="v4_0" name="OpenSim.Services.SimulationService" path="OpenSim/Services/SimulationService" type="Library"> | ||
843 | <Configuration name="Debug"> | ||
844 | <Options> | ||
845 | <OutputPath>../../../bin/</OutputPath> | ||
846 | </Options> | ||
847 | </Configuration> | ||
848 | <Configuration name="Release"> | ||
849 | <Options> | ||
850 | <OutputPath>../../../bin/</OutputPath> | ||
851 | </Options> | ||
852 | </Configuration> | ||
853 | |||
854 | <ReferencePath>../../../bin/</ReferencePath> | ||
855 | <Reference name="System"/> | ||
856 | <Reference name="System.Core"/> | ||
857 | <Reference name="System.Web"/> | ||
858 | <Reference name="System.Xml"/> | ||
859 | <Reference name="System.Drawing"/> | ||
860 | <Reference name="OpenMetaverseTypes" path="../../../bin/"/> | ||
861 | <Reference name="OpenMetaverse" path="../../../bin/"/> | ||
862 | <Reference name="OpenSim.Data"/> | ||
863 | <Reference name="OpenSim.Framework"/> | ||
864 | <Reference name="OpenSim.Region.Framework"/> | ||
865 | <Reference name="OpenSim.Services.Base"/> | ||
866 | <Reference name="OpenSim.Services.Interfaces"/> | ||
867 | <Reference name="Nini" path="../../../bin/"/> | ||
868 | <Reference name="log4net" path="../../../bin/"/> | ||
869 | <Reference name="XMLRPC" path="../../../bin/"/> | ||
870 | |||
871 | <Files> | ||
872 | <Match pattern="*.cs" recurse="true"/> | ||
873 | </Files> | ||
874 | </Project> | ||
875 | |||
842 | <Project frameworkVersion="v4_0" name="OpenSim.Services.AssetService" path="OpenSim/Services/AssetService" type="Library"> | 876 | <Project frameworkVersion="v4_0" name="OpenSim.Services.AssetService" path="OpenSim/Services/AssetService" type="Library"> |
843 | <Configuration name="Debug"> | 877 | <Configuration name="Debug"> |
844 | <Options> | 878 | <Options> |
@@ -1000,6 +1034,35 @@ | |||
1000 | </Files> | 1034 | </Files> |
1001 | </Project> | 1035 | </Project> |
1002 | 1036 | ||
1037 | <Project frameworkVersion="v4_0" name="OpenSim.Services.EstateService" path="OpenSim/Services/EstateService" type="Library"> | ||
1038 | <Configuration name="Debug"> | ||
1039 | <Options> | ||
1040 | <OutputPath>../../../bin/</OutputPath> | ||
1041 | </Options> | ||
1042 | </Configuration> | ||
1043 | <Configuration name="Release"> | ||
1044 | <Options> | ||
1045 | <OutputPath>../../../bin/</OutputPath> | ||
1046 | </Options> | ||
1047 | </Configuration> | ||
1048 | |||
1049 | <ReferencePath>../../../bin/</ReferencePath> | ||
1050 | <Reference name="System"/> | ||
1051 | <Reference name="System.Core"/> | ||
1052 | <Reference name="OpenMetaverseTypes" path="../../../bin/"/> | ||
1053 | <Reference name="OpenMetaverse" path="../../../bin/"/> | ||
1054 | <Reference name="OpenSim.Framework"/> | ||
1055 | <Reference name="OpenSim.Services.Interfaces"/> | ||
1056 | <Reference name="OpenSim.Services.Base"/> | ||
1057 | <Reference name="OpenSim.Data"/> | ||
1058 | <Reference name="Nini" path="../../../bin/"/> | ||
1059 | <Reference name="log4net" path="../../../bin/"/> | ||
1060 | |||
1061 | <Files> | ||
1062 | <Match pattern="*.cs" recurse="true"/> | ||
1063 | </Files> | ||
1064 | </Project> | ||
1065 | |||
1003 | <Project frameworkVersion="v4_0" name="OpenSim.Services.PresenceService" path="OpenSim/Services/PresenceService" type="Library"> | 1066 | <Project frameworkVersion="v4_0" name="OpenSim.Services.PresenceService" path="OpenSim/Services/PresenceService" type="Library"> |
1004 | <Configuration name="Debug"> | 1067 | <Configuration name="Debug"> |
1005 | <Options> | 1068 | <Options> |