This template creates a BenchmarkDotNet solution, along with a console project with unit tests.
The point of this is so that you can easily create a benchmark project to test out different algorithms, or to test out different ways of doing things.
- To run the benchmarks, run
dotnet run -c Release
in theBenchmarkApp
folder.
Create a new app in your current directory by running.
dotnet new bmichaelis.quickstart.benchmarkconsole
- Should just work out of the box. Not meant to be the perfect project setup to start with, but rather a quick way to get started with benchmarking and testing out different algorithms or such.