-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved internal packages to exist public packages (#277)
* Moved InMemoryTransport * Moved SequentialGuid * Moved all locks * Moved event hooks
- Loading branch information
Showing
94 changed files
with
157 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 0 additions & 15 deletions
15
...x.Internals.DistributedLock.EntityFrameworkCore/Extensions/ExtensionAddDistributedLock.cs
This file was deleted.
Oops, something went wrong.
17 changes: 0 additions & 17 deletions
17
...EntityFrameworkCore/TransactionalBox.Internals.DistributedLock.EntityFrameworkCore.csproj
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
source/Internals/TransactionalBox.Internals.DistributedLock/IDistributedLockInstance.cs
This file was deleted.
Oops, something went wrong.
23 changes: 0 additions & 23 deletions
23
...nsactionalBox.Internals.DistributedLock/TransactionalBox.Internals.DistributedLock.csproj
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
source/Internals/TransactionalBox.Internals.EventHooks/EventHook.cs
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...ernals/TransactionalBox.Internals.EventHooks/TransactionalBox.Internals.EventHooks.csproj
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
source/Internals/TransactionalBox.Internals.KeyedInMemoryLock/ILockInstance.cs
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...tionalBox.Internals.KeyedInMemoryLock/TransactionalBox.Internals.KeyedInMemoryLock.csproj
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...ransactionalBox.Internals.SequentialGuid/TransactionalBox.Internals.SequentialGuid.csproj
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...onalBox.Internals.Transport.InMemory/TransactionalBox.Internals.Transport.InMemory.csproj
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...x.EntityFrameworkCore/Internals/Inbox/ImplementedContracts/EntityFrameworkInboxStorage.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ernals/InternalPackages/DistributedLock/ExtensionAddEntityFrameworkCoreDistributedLock.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Microsoft.EntityFrameworkCore; | ||
using TransactionalBox.Internals.InternalPackages.DistributedLock; | ||
|
||
namespace TransactionalBox.EntityFrameworkCore.Internals.InternalPackages.DistributedLock | ||
{ | ||
internal static class ExtensionAddEntityFrameworkCoreDistributedLock | ||
{ | ||
internal static void AddEntityFrameworkCoreDistributedLock<T>(this ModelBuilder modelBuilder) | ||
where T : Lock, new() | ||
{ | ||
modelBuilder.ApplyConfiguration(new LockEntityTypeConfiguration<T>()); | ||
} | ||
} | ||
} |
6 changes: 2 additions & 4 deletions
6
...nsions/ExtensionUseEntityFrameworkCore.cs → ...edLock/ExtensionUseEntityFrameworkCore.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
.../Internals/LockEntityTypeConfiguration.cs → ...ibutedLock/LockEntityTypeConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../Internals/Outbox/ImplementedContracts/EntityFrameworkAddMessagesToTransportRepository.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
source/TransactionalBox.EntityFrameworkCore/TransactionalBox.EntityFrameworkCore.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Internals\TransactionalBox.Internals.DistributedLock.EntityFrameworkCore\TransactionalBox.Internals.DistributedLock.EntityFrameworkCore.csproj" /> | ||
<ProjectReference Include="..\TransactionalBox\TransactionalBox.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<InternalsVisibleTo Include="TransactionalBox.End2EndTests" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.