Skip to content

Commit 3b1ace7

Browse files
Merge pull request #4 from StuartFerguson/task/#3_changetarget
Ready for PR
2 parents aa352ea + 6225655 commit 3b1ace7

17 files changed

Lines changed: 31 additions & 7 deletions

.github/workflows/createrelease.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
run: |
4040
dotnet pack "Shared\Shared.csproj" /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output Nugets
4141
dotnet pack "Shared.DomainDrivenDesign\Shared.DomainDrivenDesign.csproj" /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output Nugets
42+
dotnet pack "Shared.EventStore\Shared.EventStore.csproj" /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output Nugets
4243
dotnet pack "ClientProxyBase\ClientProxyBase.csproj" /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} --output Nugets
4344
dotnet nuget push Nugets/Shared.${{ steps.get_version.outputs.VERSION }}.nupkg --api-key ${{ secrets.MYGET_APIKEY }} --source https://www.myget.org/F/transactionprocessing/api/v2/package
4445
dotnet nuget push Nugets/Shared.DomainDrivenDesign.${{ steps.get_version.outputs.VERSION }}.nupkg --api-key ${{ secrets.MYGET_APIKEY }} --source https://www.myget.org/F/transactionprocessing/api/v2/package
46+
dotnet nuget push Nugets/Shared.EventStore.${{ steps.get_version.outputs.VERSION }}.nupkg --api-key ${{ secrets.MYGET_APIKEY }} --source https://www.myget.org/F/transactionprocessing/api/v2/package
4547
dotnet nuget push Nugets/ClientProxyBase.${{ steps.get_version.outputs.VERSION }}.nupkg --api-key ${{ secrets.MYGET_APIKEY }} --source https://www.myget.org/F/transactionprocessing/api/v2/package
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
</PropertyGroup>
66

77
</Project>
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="EventStore.Client" Version="5.0.2" />
98
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
10-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
119
</ItemGroup>
12-
1310
</Project>
File renamed without changes.

Shared.DomainDrivenDesign/EventStore/AggregateRepository.cs renamed to Shared.EventStore/EventStore/AggregateRepository.cs

File renamed without changes.

Shared.DomainDrivenDesign/EventStore/EventAppearedEventHandler.cs renamed to Shared.EventStore/EventStore/EventAppearedEventHandler.cs

File renamed without changes.

Shared.DomainDrivenDesign/EventStore/EventStoreConnectionSettings.cs renamed to Shared.EventStore/EventStore/EventStoreConnectionSettings.cs

File renamed without changes.

Shared.DomainDrivenDesign/EventStore/EventStoreContext.cs renamed to Shared.EventStore/EventStore/EventStoreContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
using global::EventStore.ClientAPI.SystemData;
1313
using Microsoft.Extensions.Logging;
1414
using Newtonsoft.Json;
15+
using Shared.DomainDrivenDesign.EventSourcing;
1516

1617
/// <summary>
1718
/// Delegate TraceHandler
File renamed without changes.

Shared.DomainDrivenDesign/EventStore/IAggregateRepository.cs renamed to Shared.EventStore/EventStore/IAggregateRepository.cs

File renamed without changes.

0 commit comments

Comments
 (0)