Skip to content

Commit 2f38757

Browse files
authored
Merge branch 'develop' into EF-605_ProcessSagaAsync_SourceId
2 parents 76f1e8e + 1e966d2 commit 2f38757

21 files changed

Lines changed: 53 additions & 38 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ the [do’s and don’ts](http://docs.geteventflow.net/DosAndDonts.html) and the
7272
command/entities/events from the [complete example](#complete-example). There are endpoints to
7373
create a new example event, getting a data model and to replay all data models.
7474

75+
* **[ElasticSearch/.NET Core:](https://github.com/DureSameen/EventFlowWithElasticSearch)**
76+
It is configured with EventFlow, ElasticSearch, EventStore and RabbitMq. See "withRabbitMq" branch for #384.
77+
7578
### Overview
7679

7780
Here is a list of the EventFlow concepts. Use the links to navigate

RELEASE_NOTES.md

Lines changed: 18 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,23 @@
11
### New in 0.70 (not released yet)
22

3-
* Breaking: Changed target framework for:
4-
- `EventFlow`,
5-
- `EventFlow.Tests`,
6-
- `EventFlow.TestHelpers`,
7-
- `EventFlow.AspNetCore.Tests`,
8-
- `EventFlow.Autofac`,
9-
- `EventFlow.Autofac.Tests`,
10-
- `EventFlow.DependencyInjection.Tests`,
11-
- `EventFlow.Elasticsearch`,
12-
- `EventFlow.Elasticsearch.Tests`,
13-
- `EventFlow.EntityFramework.Tests`,
14-
- `EventFlow.Examples.Shipping`,
15-
- `EventFlow.Examples.Shipping.Tests`,
16-
- `EventFlow.Examples.Shipping.Queries.InMemory`,
17-
- `EventFlow.Hangfire`,
18-
- `EventFlow.Hangfire.Tests`,
19-
- `EventFlow.MongoDB`,
20-
- `EventFlow.MsSql`,
21-
- `EventFlow.MsSql.Tests`,
22-
- `EventFlow.Owin`,
23-
- `EventFlow.Owin.Tests`,
24-
- `EventFlow.PostgreSql`,
25-
- `EventFlow.PostgreSql.Tests`,
26-
- `EventFlow.RabbitMQ`,
27-
- `EventFlow.RabbitMQ.Tests`
28-
- `EventFlow.Sql`,
29-
- `EventFlow.Sql.Tests`,
30-
- `EventFlow.SQLite`,
31-
- `EventFlow.SQLite.Tests`
32-
33-
to .NET 4.5.2 as required by `AutoFixture.AutoMoq` NuGet dependency and to align packages on the
34-
[latest supported release](https://github.com/Microsoft/dotnet/blob/master/releases/README.md).
3+
* Breaking: Changed target framework to to .NET Framework 4.5.2 for the following NuGet packages,
4+
as Microsoft has [discontinued](https://github.com/Microsoft/dotnet/blob/master/releases/README.md)
5+
support for .NET Framework 4.5.1
6+
- `EventFlow`
7+
- `EventFlow.TestHelpers`
8+
- `EventFlow.Autofac`
9+
- `EventFlow.Elasticsearch`
10+
- `EventFlow.Examples.Shipping`
11+
- `EventFlow.Examples.Shipping.Queries.InMemory`
12+
- `EventFlow.Hangfire`
13+
- `EventFlow.MongoDB`
14+
- `EventFlow.MsSql`
15+
- `EventFlow.Owin`
16+
- `EventFlow.PostgreSql`
17+
- `EventFlow.RabbitMQ`
18+
- `EventFlow.Sql`
19+
- `EventFlow.SQLite`
20+
* New: Added [SourceLink](https://github.com/dotnet/sourcelink) support
3521

3622
* Fix: `DispatchToSagas.ProcessSagaAsync` use `EventId` instead of `SourceId` as `SourceId`
3723
for delivery of external event to AggregateSaga

Source/Common.props

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<DebugType>embedded</DebugType>
4-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
3+
<DebugType>embedded</DebugType>
4+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
5+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
6+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
7+
<IncludeSymbols>true</IncludeSymbols>
8+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
59
</PropertyGroup>
610
</Project>

Source/EventFlow.AspNetCore/EventFlow.AspNetCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<ItemGroup>
2525
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.0.0" />
2626
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="2.1.0" />
27+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
2728
</ItemGroup>
2829

2930
<ItemGroup>

Source/EventFlow.Autofac/EventFlow.Autofac.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
3030
<PackageReference Include="Autofac" Version="4.5.0" />
3131
</ItemGroup>
32+
<ItemGroup>
33+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
34+
</ItemGroup>
3235
<ItemGroup>
3336
<ProjectReference Include="..\EventFlow\EventFlow.csproj" />
3437
</ItemGroup>

Source/EventFlow.DependencyInjection/EventFlow.DependencyInjection.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<ItemGroup>
2525
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
2626
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.0.0" />
27+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
2728
</ItemGroup>
2829

2930
<ItemGroup>

Source/EventFlow.Elasticsearch/EventFlow.Elasticsearch.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<Folder Include="Properties\" />
2525
</ItemGroup>
2626
<ItemGroup>
27+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
2728
<PackageReference Include="NEST" Version="6.1.0" />
2829
<PackageReference Include="newtonsoft.json" Version="11.0.2" />
2930
</ItemGroup>

Source/EventFlow.EntityFramework/EventFlow.EntityFramework.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
<Version>2.1.0</Version>
2626
</PackageReference>
2727
</ItemGroup>
28+
<ItemGroup>
29+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
30+
</ItemGroup>
2831
<ItemGroup>
2932
<ProjectReference Include="..\EventFlow\EventFlow.csproj" />
3033
</ItemGroup>

Source/EventFlow.EventStores.EventStore/EventFlow.EventStores.EventStore.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
3030
<PackageReference Include="EventStore.ClientAPI.NetCore" Version="4.1.0.23" />
3131
</ItemGroup>
32+
<ItemGroup>
33+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
34+
</ItemGroup>
3235
<ItemGroup>
3336
<ProjectReference Include="..\EventFlow\EventFlow.csproj" />
3437
</ItemGroup>

Source/EventFlow.Hangfire/EventFlow.Hangfire.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<PackageReference Include="Hangfire.Core" Version="1.6.20" />
28-
<PackageReference Include="newtonsoft.json" Version="11.0.2" />
28+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="All" />
29+
<PackageReference Include="newtonsoft.json" Version="11.0.2" />
2930
</ItemGroup>
3031
<ItemGroup>
3132
<ProjectReference Include="..\EventFlow\EventFlow.csproj" />

0 commit comments

Comments
 (0)