*Fixed all renaming for OpenGridServices.sln, still a reference issue in prebuild.xml though

This commit is contained in:
mingchen
2007-06-27 18:04:07 +00:00
parent 1dcc814b70
commit 2261e4ec2a
28 changed files with 251 additions and 175 deletions

View File

@@ -88,10 +88,10 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="SQLiteManager.cs">
<Compile Include="SQLiteGridData.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="SQLiteGridData.cs">
<Compile Include="SQLiteManager.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs">

View File

@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("OpenGrid.Framework.Data.SQLite")]
[assembly: AssemblyTitle("OpenSim.Framework.Data.SQLite")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("OpenGrid.Framework.Data.SQLite")]
[assembly: AssemblyProduct("OpenSim.Framework.Data.SQLite")]
[assembly: AssemblyCopyright("Copyright © 2007")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

View File

@@ -28,9 +28,9 @@
using System;
using System.Collections.Generic;
using System.Text;
using OpenGrid.Framework.Data;
using OpenSim.Framework.Data;
namespace OpenGrid.Framework.Data.SQLite
namespace OpenSim.Framework.Data.SQLite
{
/// <summary>
/// A Grid Interface to the SQLite database

View File

@@ -32,9 +32,9 @@ using System.Data;
using System.Data.SQLite;
using OpenGrid.Framework.Data;
using OpenSim.Framework.Data;
namespace OpenGrid.Framework.Data.SQLite
namespace OpenSim.Framework.Data.SQLite
{
class SQLiteManager
{