TinyEventStore 0.19.0

dotnet add package TinyEventStore --version 0.19.0
NuGet\Install-Package TinyEventStore -Version 0.19.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TinyEventStore" Version="0.19.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TinyEventStore --version 0.19.0
#r "nuget: TinyEventStore, 0.19.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TinyEventStore as a Cake Addin
#addin nuget:?package=TinyEventStore&version=0.19.0

// Install TinyEventStore as a Cake Tool
#tool nuget:?package=TinyEventStore&version=0.19.0

TinyEventStore

[Enter useful description for TinyEventStore]


Builds

GitHub Actions
GitHub Actions
Build History

NuGet

Package Stable Prerelease
TinyEventStore NuGet Badge NuGet Badge

Developing

Make sure the following requirements are installed on your system:

or


Environment Variables

  • CONFIGURATION will set the configuration of the dotnet commands. If not set, it will default to Release.
    • CONFIGURATION=Debug ./build.sh will result in -c additions to commands such as in dotnet build -c Debug
  • ENABLE_COVERAGE Will enable running code coverage metrics. AltCover can have severe performance degradation so code coverage evaluation are disabled by default to speed up the feedback loop.
    • ENABLE_COVERAGE=1 ./build.sh will enable code coverage evaluation

Building

> build.cmd <optional buildtarget> // on windows
$ ./build.sh  <optional buildtarget>// on unix

The bin of your library should look similar to:

$ tree src/TinyEventStore/bin/
src/TinyEventStore/bin/
└── Debug
    └── net6.0
        ├── TinyEventStore.deps.json
        ├── TinyEventStore.dll
        ├── TinyEventStore.pdb
        └── TinyEventStore.xml


Build Targets

  • Clean - Cleans artifact and temp directories.
  • DotnetRestore - Runs dotnet restore on the solution file.
  • DotnetBuild - Runs dotnet build on the solution file.
  • FSharpAnalyzers - Runs BinaryDefense.FSharp.Analyzers.
  • DotnetTest - Runs dotnet test on the solution file.
  • GenerateCoverageReport - Code coverage is run during DotnetTest and this generates a report via ReportGenerator.
  • ShowCoverageReport - Shows the report generated in GenerateCoverageReport.
  • WatchTests - Runs dotnet watch with the test projects. Useful for rapid feedback loops.
  • GenerateAssemblyInfo - Generates AssemblyInfo for libraries.
  • DotnetPack - Runs dotnet pack. This includes running Source Link.
  • SourceLinkTest - Runs a Source Link test tool to verify Source Links were properly generated.
  • PublishToNuGet - Publishes the NuGet packages generated in DotnetPack to NuGet via paket push. Runs only from Github Actions.
  • GitRelease - Creates a commit message with the Release Notes and a git tag via the version in the Release Notes.
  • GitHubRelease - Publishes a GitHub Release with the Release Notes and any NuGet packages. Runs only from Github Actions.
  • FormatCode - Runs Fantomas on the solution file.
  • CheckFormatCode - Runs Fantomas --check on the solution file.
  • BuildDocs - Generates Documentation from docsSrc and the XML Documentation Comments from your libraries in src.
  • WatchDocs - Generates documentation and starts a webserver locally. It will rebuild and hot reload if it detects any changes made to docsSrc files, or libraries in src.

Releasing

git init
git add .
git commit -m "Scaffold"
git branch -M main
git remote add origin https://github.com/jannikbuschke/TinyEventStore.git
git push -u origin main

NOTE: Its highly recommend to add a link to the Pull Request next to the release note that it affects. The reason for this is when the RELEASE target is run, it will add these new notes into the body of git commit. GitHub will notice the links and will update the Pull Request with what commit referenced it saying "added a commit that referenced this pull request". Since the build script automates the commit message, it will say "Bump Version to x.y.z". The benefit of this is when users goto a Pull Request, it will be clear when and which version those code changes released. Also when reading the CHANGELOG, if someone is curious about how or why those changes were made, they can easily discover the work and discussions.

Here's an example of adding an "Unreleased" section to a CHANGELOG.md with a 0.1.0 section already released.

## [Unreleased]

### Added
- Does cool stuff!

### Fixed
- Fixes that silly oversight

## [0.1.0] - 2017-03-17
First release

### Added
- This release already has lots of features

[Unreleased]: https://github.com/jannikbuschke/TinyEventStore/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/jannikbuschke/TinyEventStore/releases/tag/v0.1.0
  • You can then use the GitRelease target, specifying the version number either in the RELEASE_VERSION environment variable, or else as a parameter after the target name. This will:
    • update CHANGELOG.md, moving changes from the Unreleased section into a new 0.2.0 section
      • if there were any prerelease versions of 0.2.0 in the changelog, it will also collect their changes into the final 0.2.0 entry
    • make a commit bumping the version: Bump version to 0.2.0 and adds the new changelog section to the commit's body
    • push a git tag

macOS/Linux Parameter:

./build.sh Release 0.2.0

macOS/Linux Environment Variable:

RELEASE_VERSION=0.2.0 ./build.sh Release
  • The Github Action will handle the new tag:
    • publish the package to NuGet
    • create a GitHub release for that git tag, upload release notes and NuGet packages to GitHub

Releasing Documentation

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on TinyEventStore:

Package Downloads
TinyEventStore.Ef

TinyEventStore does the thing!

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.19.0 50 5/15/2024
0.18.0 69 5/10/2024
0.17.0 99 4/14/2024
0.16.1 94 4/4/2024
0.16.0 87 4/4/2024
0.15.0 91 4/4/2024
0.14.0 81 4/3/2024
0.13.0 68 4/3/2024
0.12.0 87 4/3/2024
0.11.0 87 4/3/2024
0.9.0 88 4/2/2024
0.8.0 96 2/19/2024
0.7.0 70 2/16/2024
0.6.0 68 2/16/2024
0.4.0 85 2/15/2024
0.3.0 86 2/5/2024
0.2.0 95 1/16/2024
0.1.0 90 1/16/2024