diff options
author | lbsa71 | 2008-03-30 21:04:45 +0000 |
---|---|---|
committer | lbsa71 | 2008-03-30 21:04:45 +0000 |
commit | f52886f8f55ba6fd520cc3fffefd9a5607ad2a33 (patch) | |
tree | 484913aa8f0bde74cd42f8a7397f34390bb5bb00 /prebuild.xml | |
parent | * Minor cleanup (diff) | |
download | opensim-SC_OLD-f52886f8f55ba6fd520cc3fffefd9a5607ad2a33.zip opensim-SC_OLD-f52886f8f55ba6fd520cc3fffefd9a5607ad2a33.tar.gz opensim-SC_OLD-f52886f8f55ba6fd520cc3fffefd9a5607ad2a33.tar.bz2 opensim-SC_OLD-f52886f8f55ba6fd520cc3fffefd9a5607ad2a33.tar.xz |
* Added competely untested MSSQLMapper
* Added the new mapper to the mapper factory
* Made choice of mapper configurable
* This means, in hteory, that we can persist avatar appearance on MSSQL as well
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/prebuild.xml b/prebuild.xml index 89bbf09..c7f6c5f 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -234,6 +234,34 @@ | |||
234 | </Files> | 234 | </Files> |
235 | </Project> | 235 | </Project> |
236 | 236 | ||
237 | <Project name="OpenSim.Framework.Data.MSSQLMapper" path="OpenSim/Framework/Data.MSSQLMapper" type="Library"> | ||
238 | <Configuration name="Debug"> | ||
239 | <Options> | ||
240 | <OutputPath>../../../bin/</OutputPath> | ||
241 | </Options> | ||
242 | </Configuration> | ||
243 | <Configuration name="Release"> | ||
244 | <Options> | ||
245 | <OutputPath>../../../bin/</OutputPath> | ||
246 | </Options> | ||
247 | </Configuration> | ||
248 | |||
249 | <ReferencePath>../../../bin/</ReferencePath> | ||
250 | <Reference name="System" localCopy="false"/> | ||
251 | <Reference name="System.Xml"/> | ||
252 | <Reference name="System.Data"/> | ||
253 | <Reference name="OpenSim.Framework"/> | ||
254 | <Reference name="OpenSim.Framework.Data"/> | ||
255 | <Reference name="OpenSim.Framework.Data.Base"/> | ||
256 | <Reference name="libsecondlife.dll"/> | ||
257 | <Reference name="OpenSim.Framework.Console"/> | ||
258 | <Reference name="log4net"/> | ||
259 | |||
260 | <Files> | ||
261 | <Match pattern="*.cs" recurse="true"/> | ||
262 | </Files> | ||
263 | </Project> | ||
264 | |||
237 | <Project name="OpenSim.Framework.Data.MapperFactory" path="OpenSim/Framework/Data.MapperFactory" type="Library"> | 265 | <Project name="OpenSim.Framework.Data.MapperFactory" path="OpenSim/Framework/Data.MapperFactory" type="Library"> |
238 | <Configuration name="Debug"> | 266 | <Configuration name="Debug"> |
239 | <Options> | 267 | <Options> |
@@ -254,6 +282,7 @@ | |||
254 | <Reference name="OpenSim.Framework.Data"/> | 282 | <Reference name="OpenSim.Framework.Data"/> |
255 | <Reference name="OpenSim.Framework.Data.Base"/> | 283 | <Reference name="OpenSim.Framework.Data.Base"/> |
256 | <Reference name="OpenSim.Framework.Data.MySQLMapper"/> | 284 | <Reference name="OpenSim.Framework.Data.MySQLMapper"/> |
285 | <Reference name="OpenSim.Framework.Data.MSSQLMapper"/> | ||
257 | 286 | ||
258 | <Files> | 287 | <Files> |
259 | <Match pattern="*.cs" recurse="true"/> | 288 | <Match pattern="*.cs" recurse="true"/> |