move NullStorage => OpenSim.Data.Null to be consistant with
where other data storage assemblies are.0.6.0-stable
parent
bd56cb8776
commit
5e32d86b87
|
@ -31,7 +31,7 @@ using OpenSim.Framework;
|
||||||
using OpenSim.Region.Environment.Interfaces;
|
using OpenSim.Region.Environment.Interfaces;
|
||||||
using OpenSim.Region.Environment.Scenes;
|
using OpenSim.Region.Environment.Scenes;
|
||||||
|
|
||||||
namespace OpenSim.DataStore.NullStorage
|
namespace OpenSim.Data.Null
|
||||||
{
|
{
|
||||||
public class NullDataStore : IRegionDataStore
|
public class NullDataStore : IRegionDataStore
|
||||||
{
|
{
|
|
@ -32,11 +32,11 @@ using System.Runtime.InteropServices;
|
||||||
// set of attributes. Change these attribute values to modify the information
|
// set of attributes. Change these attribute values to modify the information
|
||||||
// associated with an assembly.
|
// associated with an assembly.
|
||||||
|
|
||||||
[assembly : AssemblyTitle("OpenSim.DataStore.NullStorage")]
|
[assembly : AssemblyTitle("OpenSim.Data.Null")]
|
||||||
[assembly : AssemblyDescription("")]
|
[assembly : AssemblyDescription("")]
|
||||||
[assembly : AssemblyConfiguration("")]
|
[assembly : AssemblyConfiguration("")]
|
||||||
[assembly : AssemblyCompany("")]
|
[assembly : AssemblyCompany("")]
|
||||||
[assembly : AssemblyProduct("OpenSim.DataStore.NullStorage")]
|
[assembly : AssemblyProduct("OpenSim.Data.Null")]
|
||||||
[assembly : AssemblyCopyright("Copyright (c) OpenSimulator.org Developers 2007-2008")]
|
[assembly : AssemblyCopyright("Copyright (c) OpenSimulator.org Developers 2007-2008")]
|
||||||
[assembly : AssemblyTrademark("")]
|
[assembly : AssemblyTrademark("")]
|
||||||
[assembly : AssemblyCulture("")]
|
[assembly : AssemblyCulture("")]
|
|
@ -7,7 +7,7 @@ gridmode = false
|
||||||
|
|
||||||
; *** Prim Storage - only leave one storage_plugin uncommented ***
|
; *** Prim Storage - only leave one storage_plugin uncommented ***
|
||||||
; --- The NullStorage stores nothing - effectively disabling persistence:
|
; --- The NullStorage stores nothing - effectively disabling persistence:
|
||||||
storage_plugin = "OpenSim.DataStore.NullStorage.dll"
|
storage_plugin = "OpenSim.Data.Null.dll"
|
||||||
|
|
||||||
; --- To use sqlite as region storage:
|
; --- To use sqlite as region storage:
|
||||||
;storage_plugin = "OpenSim.Data.SQLite.dll"
|
;storage_plugin = "OpenSim.Data.SQLite.dll"
|
||||||
|
|
|
@ -852,19 +852,19 @@
|
||||||
</Project>
|
</Project>
|
||||||
|
|
||||||
<!-- Datastore Plugins -->
|
<!-- Datastore Plugins -->
|
||||||
<Project name="OpenSim.DataStore.NullStorage" path="OpenSim/Region/Storage/OpenSim.DataStore.NullStorage" type="Library">
|
<Project name="OpenSim.Data.Null" path="OpenSim/Data/Null" type="Library">
|
||||||
<Configuration name="Debug">
|
<Configuration name="Debug">
|
||||||
<Options>
|
<Options>
|
||||||
<OutputPath>../../../../bin/</OutputPath>
|
<OutputPath>../../../bin/</OutputPath>
|
||||||
</Options>
|
</Options>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration name="Release">
|
<Configuration name="Release">
|
||||||
<Options>
|
<Options>
|
||||||
<OutputPath>../../../../bin/</OutputPath>
|
<OutputPath>../../../bin/</OutputPath>
|
||||||
</Options>
|
</Options>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
|
|
||||||
<ReferencePath>../../../../bin/</ReferencePath>
|
<ReferencePath>../../../bin/</ReferencePath>
|
||||||
<Reference name="System" localCopy="false"/>
|
<Reference name="System" localCopy="false"/>
|
||||||
<Reference name="System.Xml"/>
|
<Reference name="System.Xml"/>
|
||||||
<Reference name="libsecondlife.dll"/>
|
<Reference name="libsecondlife.dll"/>
|
||||||
|
|
Loading…
Reference in New Issue