The purpose of the EventStore is to represent a series of events as a stream. NEventStore is a persistence agnostic event sourcing library for .NET. The primary use is most often associated with CQRS. This package is an implementation of a Polling Client that reads data from an EventStore.
$ dotnet add package NEventStore.PollingClientNEventStore is a persistence library used to abstract different storage implementations when using event sourcing as storage mechanism.
This library is developed with a specific focus on DDD/CQRS applications.
NEventStore currently supports:
Starting from Version 6.0.0 NEventStore will use Semantic Versioning to track the version numbers.
Branches:
Please see the documentation to get started and for more information.
ChangeLog can be found here
To build the project locally on a Windows Machine:
build.ps1 in the root of the repository.Versioning is done automatically by the build script updating the AssemblyInfo.cs file (false in .csproj files) before the build starts. The version number is retrieved from the git repository tags using "gitversion" tool.
Things are handled this way because NEventStore is used a submodule in other projects and it need to have it's own version number when building other projects.
You should not update the version number manually, not commit the updated AssemblyInfo files.