AtleX.BenchmarkDotNet.Template.CSharp 1.2.2

Suggested Alternatives

BenchmarkDotNet.Templates

Additional Details

The BenchmarkDotNet project now supplies their own templates. Please use those official templates instead of this one.

dotnet new install AtleX.BenchmarkDotNet.Template.CSharp::1.2.2
This package contains a .NET Template Package you can call from the shell/command line.

AtleX.BenchmarkDotNet.Template.CSharp

AtleX.BenchmarkDotNet.Template.CSharp is a template for dotnet new to create a BenchmarkDotNet console application in C#. It allows you to easily and quickly create a small application to run some benchmarks.

Installation/update

On the console, run the following command to install or update the template:

dotnet new -i AtleX.BenchmarkDotNet.Template.CSharp

Using the template

Execute the following command to create a new console application to run benchmarks:

dotnet new bdncsharp

You can also specify a name for the application:

dotnet new bdncsharp --name TestBench

After creating the new console application, you can edit Program.cs to write the benchmarks you want to run.

Running the benchmarks

To run the benchmarks, execute the following command in the app's directory to run the benchmarks:

dotnet run --configuration release

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.2 2,815 5/15/2019
1.2.1 586 5/15/2019
1.2.0 640 4/3/2019
1.1.0 662 2/27/2019
1.0.1 789 11/22/2018
1.0.0 690 11/22/2018

1.2.2:
- [Bug] Fixed incorrecly generated code in Program
1.2.1:
- [Bug] Fixed not being able to run the benchmarks without a solution file (#1)
1.2.0:
- [Feature] Upgraded BenchmarkDotNet to v0.11.5
1.1.0:
- [Feature] Upgraded BenchmarkDotNet to v0.11.4