Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions EventFlow.Example/EventFlow.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>Oktay Kır</Authors>
<RootNamespace>EventFlowExample</RootNamespace>
</PropertyGroup>
Expand All @@ -19,9 +19,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="EventFlow" Version="0.77.4077" />
<PackageReference Include="EventFlow.Autofac" Version="0.77.4023" />
<PackageReference Include="EventFlow.MongoDB" Version="0.76.4014" />
<PackageReference Include="EventFlow.RabbitMQ" Version="0.77.4023" />
<PackageReference Include="EventFlow.Autofac" Version="0.77.4077" />
<PackageReference Include="EventFlow.MongoDB" Version="0.77.4077" />
<PackageReference Include="EventFlow.RabbitMQ" Version="0.77.4077" />
<PackageReference Include="EventStore.Client" Version="5.0.5" />
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion EventStore/EventStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EventFlow.EventStores.EventStore" Version="0.77.4023" />
<PackageReference Include="EventFlow.EventStores.EventStore" Version="0.77.4077" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
![Build Status](https://github.com/OKTAYKIR/EventFlow.Example/workflows/CI/badge.svg)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](#contributing)

DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 2.2 and include [docker compose file](/build/docker-compose.yml).
DDD+CQRS+Event-sourcing examples using EventFlow following CQRS-ES architecture. It is configured with RabbitMQ, MongoDB(Snapshot store), PostgreSQL(Read store), EventStore(GES). It's targeted to .Net Core 3.1 and include [docker compose file](/build/docker-compose.yml).

## Event Sourcing/CQRS Architecture
The most common CQRS/ES architecture would look like following diagram
Expand Down
4 changes: 2 additions & 2 deletions SyncEventHandler/SyncEventHandler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EventFlow" Version="0.77.4077" />
<PackageReference Include="EventFlow.RabbitMQ" Version="0.77.4023" />
<PackageReference Include="EventFlow.RabbitMQ" Version="0.77.4077" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.0.0" />
</ItemGroup>
Expand Down