Skip to content

Commit 6723600

Browse files
Replaced TaskHub.Shared.Infrastructure.Abstractions with TaskHub.Shared.Persistence
1 parent e62f265 commit 6723600

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<IsPackable>true</IsPackable>
7-
<Version>2.1.7</Version>
7+
<Version>2.1.8</Version>
88
<Authors>Andrey Serdyuk</Authors>
99
<Company>TaskHub</Company>
1010
<PackageTags>#TaskHub</PackageTags>

Shared.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<File Path=".nuget/publish.ps1" />
99
</Folder>
1010
<Folder Name="/Abstractions/">
11+
<Project Path="TaskHub.Shared.Persistence/TaskHub.Shared.Persistence.csproj" Id="a4b53242-b54d-4470-ab91-e7045a683888" />
1112
<Project Path="TaskHub.Shared.Primitives/TaskHub.Shared.Primitives.csproj" />
1213
<Project Path="TaskHub.Shared.Response/TaskHub.Shared.Response.csproj" />
1314
</Folder>
@@ -33,7 +34,6 @@
3334
<Project Path="TaskHub.Shared.GeoCoding.Nominatim/TaskHub.Shared.GeoCoding.Nominatim.csproj" />
3435
</Folder>
3536
<Folder Name="/Infrastructure/">
36-
<Project Path="TaskHub.Shared.Infrastructure.Abstractions/TaskHub.Shared.Infrastructure.Abstractions.csproj" Id="a4b53242-b54d-4470-ab91-e7045a683888" />
3737
<Project Path="TaskHub.Shared.Infrastructure.EfCore/TaskHub.Shared.Infrastructure.EfCore.csproj" />
3838
</Folder>
3939
<Folder Name="/Tools/">

TaskHub.Shared.Infrastructure.Abstractions/Repositories/IRepository.cs

Lines changed: 0 additions & 3 deletions
This file was deleted.

TaskHub.Shared.Infrastructure.EfCore/TaskHub.Shared.Infrastructure.EfCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<ProjectReference Include="..\TaskHub.Shared.Infrastructure.Abstractions\TaskHub.Shared.Infrastructure.Abstractions.csproj" />
17+
<ProjectReference Include="..\TaskHub.Shared.Persistence\TaskHub.Shared.Persistence.csproj" />
1818
</ItemGroup>
1919
</Project>

TaskHub.Shared.Infrastructure.EfCore/UnitOfWorks/UnitOfWorkBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Microsoft.EntityFrameworkCore;
2-
using TaskHub.Shared.Infrastructure.Abstractions.UnitOfWork;
2+
using TaskHub.Shared.Persistence.UnitOfWork;
33

44
namespace TaskHub.Shared.Infrastructure.EfCore.UnitOfWorks;
55

TaskHub.Shared.Infrastructure.Abstractions/Repositories/IOwnershipRepository.cs renamed to TaskHub.Shared.Persistence/Repositories/IOwnershipRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace TaskHub.Shared.Infrastructure.Abstractions.Repositories;
1+
namespace TaskHub.Shared.Persistence.Repositories;
22

33
public interface IOwnershipRepository<TItemId, TOwnerId> : IRepository
44
{

TaskHub.Shared.Infrastructure.Abstractions/Repositories/IReadRepository.cs renamed to TaskHub.Shared.Persistence/Repositories/IReadRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace TaskHub.Shared.Infrastructure.Abstractions.Repositories;
1+
namespace TaskHub.Shared.Persistence.Repositories;
22

33
public interface IReadRepository<TId, TModel> : IRepository
44
{
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
namespace TaskHub.Shared.Persistence.Repositories;
2+
3+
public interface IRepository;

TaskHub.Shared.Infrastructure.Abstractions/Repositories/IWriteRepository.cs renamed to TaskHub.Shared.Persistence/Repositories/IWriteRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace TaskHub.Shared.Infrastructure.Abstractions.Repositories;
1+
namespace TaskHub.Shared.Persistence.Repositories;
22

33
public interface IWriteRepository<TId, TModel> : IRepository
44
{

TaskHub.Shared.Infrastructure.Abstractions/TaskHub.Shared.Infrastructure.Abstractions.csproj renamed to TaskHub.Shared.Persistence/TaskHub.Shared.Persistence.csproj

File renamed without changes.

0 commit comments

Comments
 (0)