Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 869 Bytes

README.md

File metadata and controls

24 lines (14 loc) · 869 Bytes

Benchmark app template

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.

Startup

  • To run the benchmarks, run dotnet run -c Release in the BenchmarkApp folder.

Template

Create a new app in your current directory by running.

 dotnet new bmichaelis.quickstart.benchmarkconsole

Parameters

Default template options

Key Features

  • 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.