Skip to content

Commit c785d7c

Browse files
committed
Renamed Db4o project to Db4oRepository. Doh.
1 parent 5145e57 commit c785d7c

8 files changed

Lines changed: 9 additions & 10 deletions

File tree

SharpRepository.Db4o/Db4ORepository.cs renamed to SharpRepository.Db4oRepository/Db4ORepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using SharpRepository.Repository.Caching;
33

4-
namespace SharpRepository.Db4o
4+
namespace SharpRepository.Db4oRepository
55
{
66
/// <summary>
77
/// XML Repository layer

SharpRepository.Db4o/Db4ORepositoryBase.cs renamed to SharpRepository.Db4oRepository/Db4ORepositoryBase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
using SharpRepository.Repository.Caching;
77
using SharpRepository.Repository.FetchStrategies;
88

9-
namespace SharpRepository.Db4o
9+
namespace SharpRepository.Db4oRepository
1010
{
1111
public class Db4oRepositoryBase<T, TKey> : LinqRepositoryBase<T, TKey> where T : class, new()
1212
{
13-
//Nice reference: http://jamesrhicks.blogspot.com/2010/02/getting-started-with-db4o.html
1413
private IObjectContainer _documentStore;
1514

1615
internal Db4oRepositoryBase(string storagePath, ICachingStrategy<T, TKey> cachingStrategy = null)

SharpRepository.Db4o/Properties/AssemblyInfo.cs renamed to SharpRepository.Db4oRepository/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// General Information about an assembly is controlled through the following
55
// set of attributes. Change these attribute values to modify the information
66
// associated with an assembly.
7-
[assembly: AssemblyTitle("SharpRepository.Db4o")]
7+
[assembly: AssemblyTitle("SharpRepository.Db4oRepository")]
88
[assembly: AssemblyDescription("")]
99

1010
// The following GUID is for the ID of the typelib if this project is exposed to COM

SharpRepository.Db4o/SharpRepository.Db4o.csproj renamed to SharpRepository.Db4oRepository/SharpRepository.Db4oRepository.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<ProjectGuid>{12DD3830-5A12-484C-98B4-D30811DEC8A9}</ProjectGuid>
99
<OutputType>Library</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>SharpRepository.Db4o</RootNamespace>
12-
<AssemblyName>SharpRepository.Db4o</AssemblyName>
11+
<RootNamespace>SharpRepository.Db4oRepository</RootNamespace>
12+
<AssemblyName>SharpRepository.Db4oRepository</AssemblyName>
1313
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
</PropertyGroup>
File renamed without changes.

SharpRepository.Tests.Integration/Data/RepositoryTestCaseDataFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using NUnit.Framework;
66
using Raven.Client.Document;
77
using Raven.Client.Embedded;
8-
using SharpRepository.Db4o;
8+
using SharpRepository.Db4oRepository;
99
using SharpRepository.Repository;
1010
using SharpRepository.Tests.Integration.TestObjects;
1111
using SharpRepository.XmlRepository;

SharpRepository.Tests.Integration/SharpRepository.Tests.Integration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141
<None Include="packages.config" />
142142
</ItemGroup>
143143
<ItemGroup>
144-
<ProjectReference Include="..\SharpRepository.Db4o\SharpRepository.Db4o.csproj">
144+
<ProjectReference Include="..\SharpRepository.Db4oRepository\SharpRepository.Db4oRepository.csproj">
145145
<Project>{12DD3830-5A12-484C-98B4-D30811DEC8A9}</Project>
146-
<Name>SharpRepository.Db4o</Name>
146+
<Name>SharpRepository.Db4oRepository</Name>
147147
</ProjectReference>
148148
<ProjectReference Include="..\SharpRepository.EfRepository\SharpRepository.EfRepository.csproj">
149149
<Project>{DAFB3EB8-A771-4CC5-9375-E56F0DED60D6}</Project>

SharpRepository.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
3030
EndProject
3131
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRepository.InMemoryRepository", "SharpRepository.InMemoryRepository\SharpRepository.InMemoryRepository.csproj", "{13AD3FCA-4C9D-4674-B786-F30843638D3B}"
3232
EndProject
33-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRepository.Db4o", "SharpRepository.Db4o\SharpRepository.Db4o.csproj", "{12DD3830-5A12-484C-98B4-D30811DEC8A9}"
33+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpRepository.Db4oRepository", "SharpRepository.Db4oRepository\SharpRepository.Db4oRepository.csproj", "{12DD3830-5A12-484C-98B4-D30811DEC8A9}"
3434
EndProject
3535
Global
3636
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)