diff options
author | Melanie Thielker | 2009-05-05 04:37:06 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-05 04:37:06 +0000 |
commit | d1c9a41be0c3648251259f955f31cf7a4135e7f7 (patch) | |
tree | be74fc2c39b668577e0b43d05fec2fd2291e9323 /prebuild.xml | |
parent | Committing the user server executable skeleton (diff) | |
download | opensim-SC_OLD-d1c9a41be0c3648251259f955f31cf7a4135e7f7.zip opensim-SC_OLD-d1c9a41be0c3648251259f955f31cf7a4135e7f7.tar.gz opensim-SC_OLD-d1c9a41be0c3648251259f955f31cf7a4135e7f7.tar.bz2 opensim-SC_OLD-d1c9a41be0c3648251259f955f31cf7a4135e7f7.tar.xz |
Plumb the new server connector logic
Diffstat (limited to 'prebuild.xml')
-rw-r--r-- | prebuild.xml | 225 |
1 files changed, 115 insertions, 110 deletions
diff --git a/prebuild.xml b/prebuild.xml index 84fc576..6d9a7ea 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -1207,6 +1207,119 @@ | |||
1207 | </Files> | 1207 | </Files> |
1208 | </Project> | 1208 | </Project> |
1209 | 1209 | ||
1210 | <Project name="OpenSim.Services.Interfaces" path="OpenSim/Services/Interfaces" 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 | |||
1222 | <ReferencePath>../../../bin/</ReferencePath> | ||
1223 | <Reference name="System"/> | ||
1224 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1225 | <Reference name="OpenMetaverse.dll"/> | ||
1226 | <Reference name="OpenSim.Framework"/> | ||
1227 | <Reference name="OpenSim.Framework.Console"/> | ||
1228 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
1229 | <Reference name="Nini.dll" /> | ||
1230 | <Reference name="log4net.dll"/> | ||
1231 | |||
1232 | <Files> | ||
1233 | <Match pattern="*.cs" recurse="true"/> | ||
1234 | </Files> | ||
1235 | </Project> | ||
1236 | |||
1237 | <Project name="OpenSim.Services.UserService" path="OpenSim/Services/UserService" type="Library"> | ||
1238 | <Configuration name="Debug"> | ||
1239 | <Options> | ||
1240 | <OutputPath>../../../bin/</OutputPath> | ||
1241 | </Options> | ||
1242 | </Configuration> | ||
1243 | <Configuration name="Release"> | ||
1244 | <Options> | ||
1245 | <OutputPath>../../../bin/</OutputPath> | ||
1246 | </Options> | ||
1247 | </Configuration> | ||
1248 | |||
1249 | <ReferencePath>../../../bin/</ReferencePath> | ||
1250 | <Reference name="System"/> | ||
1251 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1252 | <Reference name="OpenMetaverse.dll"/> | ||
1253 | <Reference name="OpenSim.Framework"/> | ||
1254 | <Reference name="OpenSim.Framework.Console"/> | ||
1255 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
1256 | <Reference name="OpenSim.Services.Interfaces"/> | ||
1257 | <Reference name="Nini.dll" /> | ||
1258 | <Reference name="log4net.dll"/> | ||
1259 | |||
1260 | <Files> | ||
1261 | <Match pattern="*.cs" recurse="true"/> | ||
1262 | </Files> | ||
1263 | </Project> | ||
1264 | |||
1265 | <Project name="OpenSim.Servers.Base" path="OpenSim/Servers/Base" type="Library"> | ||
1266 | <Configuration name="Debug"> | ||
1267 | <Options> | ||
1268 | <OutputPath>../../../bin/</OutputPath> | ||
1269 | </Options> | ||
1270 | </Configuration> | ||
1271 | <Configuration name="Release"> | ||
1272 | <Options> | ||
1273 | <OutputPath>../../../bin/</OutputPath> | ||
1274 | </Options> | ||
1275 | </Configuration> | ||
1276 | |||
1277 | <ReferencePath>../../../bin/</ReferencePath> | ||
1278 | <Reference name="System"/> | ||
1279 | <Reference name="System.Xml"/> | ||
1280 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1281 | <Reference name="OpenMetaverse.dll"/> | ||
1282 | <Reference name="OpenSim.Framework"/> | ||
1283 | <Reference name="OpenSim.Framework.Console"/> | ||
1284 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
1285 | <Reference name="Nini.dll" /> | ||
1286 | <Reference name="log4net.dll"/> | ||
1287 | |||
1288 | <Files> | ||
1289 | <Match pattern="*.cs" recurse="true"/> | ||
1290 | </Files> | ||
1291 | </Project> | ||
1292 | |||
1293 | <Project name="OpenSim.Servers.UserServer" path="OpenSim/Servers/User" type="Exe"> | ||
1294 | <Configuration name="Debug"> | ||
1295 | <Options> | ||
1296 | <OutputPath>../../../bin/</OutputPath> | ||
1297 | </Options> | ||
1298 | </Configuration> | ||
1299 | <Configuration name="Release"> | ||
1300 | <Options> | ||
1301 | <OutputPath>../../../bin/</OutputPath> | ||
1302 | </Options> | ||
1303 | </Configuration> | ||
1304 | |||
1305 | <ReferencePath>../../../bin/</ReferencePath> | ||
1306 | <Reference name="System"/> | ||
1307 | <Reference name="OpenMetaverseTypes.dll"/> | ||
1308 | <Reference name="OpenMetaverse.dll"/> | ||
1309 | <Reference name="OpenSim.Framework"/> | ||
1310 | <Reference name="OpenSim.Framework.Console"/> | ||
1311 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
1312 | <Reference name="OpenSim.Servers.Base"/> | ||
1313 | <Reference name="OpenSim.Services.Interfaces"/> | ||
1314 | <Reference name="OpenSim.Services.UserService"/> | ||
1315 | <Reference name="Nini.dll" /> | ||
1316 | <Reference name="log4net.dll"/> | ||
1317 | |||
1318 | <Files> | ||
1319 | <Match pattern="*.cs" recurse="true"/> | ||
1320 | </Files> | ||
1321 | </Project> | ||
1322 | |||
1210 | <Project name="OpenSim.Region.CoreModules" path="OpenSim/Region/CoreModules" type="Library"> | 1323 | <Project name="OpenSim.Region.CoreModules" path="OpenSim/Region/CoreModules" type="Library"> |
1211 | <Configuration name="Debug"> | 1324 | <Configuration name="Debug"> |
1212 | <Options> | 1325 | <Options> |
@@ -1232,6 +1345,8 @@ | |||
1232 | <Reference name="OpenSim.Framework.Communications"/> | 1345 | <Reference name="OpenSim.Framework.Communications"/> |
1233 | <Reference name="OpenSim.Data" /> | 1346 | <Reference name="OpenSim.Data" /> |
1234 | <Reference name="OpenSim.Region.Framework" /> | 1347 | <Reference name="OpenSim.Region.Framework" /> |
1348 | <Reference name="OpenSim.Services.Interfaces" /> | ||
1349 | <Reference name="OpenSim.Services.UserService" /> | ||
1235 | <Reference name="OpenSim.Framework.Serialization"/> | 1350 | <Reference name="OpenSim.Framework.Serialization"/> |
1236 | <Reference name="OpenSim.Framework.Console"/> | 1351 | <Reference name="OpenSim.Framework.Console"/> |
1237 | <Reference name="OpenSim.Framework.Servers"/> | 1352 | <Reference name="OpenSim.Framework.Servers"/> |
@@ -2802,116 +2917,6 @@ | |||
2802 | </Files> | 2917 | </Files> |
2803 | </Project> | 2918 | </Project> |
2804 | 2919 | ||
2805 | <Project name="OpenSim.Services.Interfaces" path="OpenSim/Services/Interfaces" type="Library"> | ||
2806 | <Configuration name="Debug"> | ||
2807 | <Options> | ||
2808 | <OutputPath>../../../bin/</OutputPath> | ||
2809 | </Options> | ||
2810 | </Configuration> | ||
2811 | <Configuration name="Release"> | ||
2812 | <Options> | ||
2813 | <OutputPath>../../../bin/</OutputPath> | ||
2814 | </Options> | ||
2815 | </Configuration> | ||
2816 | |||
2817 | <ReferencePath>../../../bin/</ReferencePath> | ||
2818 | <Reference name="System"/> | ||
2819 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2820 | <Reference name="OpenMetaverse.dll"/> | ||
2821 | <Reference name="OpenSim.Framework"/> | ||
2822 | <Reference name="OpenSim.Framework.Console"/> | ||
2823 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2824 | <Reference name="Nini.dll" /> | ||
2825 | <Reference name="log4net.dll"/> | ||
2826 | |||
2827 | <Files> | ||
2828 | <Match pattern="*.cs" recurse="true"/> | ||
2829 | </Files> | ||
2830 | </Project> | ||
2831 | |||
2832 | <Project name="OpenSim.Services.UserService" path="OpenSim/Services/UserService" type="Library"> | ||
2833 | <Configuration name="Debug"> | ||
2834 | <Options> | ||
2835 | <OutputPath>../../../bin/</OutputPath> | ||
2836 | </Options> | ||
2837 | </Configuration> | ||
2838 | <Configuration name="Release"> | ||
2839 | <Options> | ||
2840 | <OutputPath>../../../bin/</OutputPath> | ||
2841 | </Options> | ||
2842 | </Configuration> | ||
2843 | |||
2844 | <ReferencePath>../../../bin/</ReferencePath> | ||
2845 | <Reference name="System"/> | ||
2846 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2847 | <Reference name="OpenMetaverse.dll"/> | ||
2848 | <Reference name="OpenSim.Framework"/> | ||
2849 | <Reference name="OpenSim.Framework.Console"/> | ||
2850 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2851 | <Reference name="OpenSim.Services.Interfaces"/> | ||
2852 | <Reference name="Nini.dll" /> | ||
2853 | <Reference name="log4net.dll"/> | ||
2854 | |||
2855 | <Files> | ||
2856 | <Match pattern="*.cs" recurse="true"/> | ||
2857 | </Files> | ||
2858 | </Project> | ||
2859 | |||
2860 | <Project name="OpenSim.Servers.Base" path="OpenSim/Servers/Base" type="Library"> | ||
2861 | <Configuration name="Debug"> | ||
2862 | <Options> | ||
2863 | <OutputPath>../../../bin/</OutputPath> | ||
2864 | </Options> | ||
2865 | </Configuration> | ||
2866 | <Configuration name="Release"> | ||
2867 | <Options> | ||
2868 | <OutputPath>../../../bin/</OutputPath> | ||
2869 | </Options> | ||
2870 | </Configuration> | ||
2871 | |||
2872 | <ReferencePath>../../../bin/</ReferencePath> | ||
2873 | <Reference name="System"/> | ||
2874 | <Reference name="System.Xml"/> | ||
2875 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2876 | <Reference name="OpenMetaverse.dll"/> | ||
2877 | <Reference name="OpenSim.Framework"/> | ||
2878 | <Reference name="OpenSim.Framework.Console"/> | ||
2879 | <Reference name="OpenSim.Framework.Servers.HttpServer"/> | ||
2880 | <Reference name="Nini.dll" /> | ||
2881 | <Reference name="log4net.dll"/> | ||
2882 | |||
2883 | <Files> | ||
2884 | <Match pattern="*.cs" recurse="true"/> | ||
2885 | </Files> | ||
2886 | </Project> | ||
2887 | |||
2888 | <Project name="OpenSim.Servers.UserServer" path="OpenSim/Servers/User" type="Exe"> | ||
2889 | <Configuration name="Debug"> | ||
2890 | <Options> | ||
2891 | <OutputPath>../../../bin/</OutputPath> | ||
2892 | </Options> | ||
2893 | </Configuration> | ||
2894 | <Configuration name="Release"> | ||
2895 | <Options> | ||
2896 | <OutputPath>../../../bin/</OutputPath> | ||
2897 | </Options> | ||
2898 | </Configuration> | ||
2899 | |||
2900 | <ReferencePath>../../../bin/</ReferencePath> | ||
2901 | <Reference name="System"/> | ||
2902 | <Reference name="OpenMetaverseTypes.dll"/> | ||
2903 | <Reference name="OpenMetaverse.dll"/> | ||
2904 | <Reference name="OpenSim.Framework"/> | ||
2905 | <Reference name="OpenSim.Framework.Console"/> | ||
2906 | <Reference name="OpenSim.Servers.Base"/> | ||
2907 | <Reference name="Nini.dll" /> | ||
2908 | <Reference name="log4net.dll"/> | ||
2909 | |||
2910 | <Files> | ||
2911 | <Match pattern="*.cs" recurse="true"/> | ||
2912 | </Files> | ||
2913 | </Project> | ||
2914 | |||
2915 | <!-- Tools --> | 2920 | <!-- Tools --> |
2916 | 2921 | ||
2917 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> | 2922 | <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> |