https://github.com/mawosoft/mawosoft.extensions.benchmarkdotnet
An extensions library for BenchmarkDotNet
https://github.com/mawosoft/mawosoft.extensions.benchmarkdotnet
benchmark benchmarkdotnet dotnet extension extensions library netstandard netstandard20
Last synced: 6 months ago
JSON representation
An extensions library for BenchmarkDotNet
- Host: GitHub
- URL: https://github.com/mawosoft/mawosoft.extensions.benchmarkdotnet
- Owner: mawosoft
- License: mit
- Created: 2021-08-22T21:41:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-05-25T02:03:50.000Z (about 1 year ago)
- Last Synced: 2025-11-27T13:01:31.110Z (8 months ago)
- Topics: benchmark, benchmarkdotnet, dotnet, extension, extensions, library, netstandard, netstandard20
- Language: C#
- Homepage: https://mawosoft.github.io/Mawosoft.Extensions.BenchmarkDotNet/
- Size: 746 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mawosoft Extensions for BenchmarkDotNet
[](https://www.nuget.org/packages/Mawosoft.Extensions.BenchmarkDotNet/)
[](https://github.com/mawosoft/Mawosoft.Extensions.BenchmarkDotNet/actions/workflows/ci.yml)
[](LICENSE)

An extensions library to support benchmarking with [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet).
### Overview · [Documentation](https://mawosoft.github.io/Mawosoft.Extensions.BenchmarkDotNet/) · [Samples](https://github.com/mawosoft/Mawosoft.Extensions.BenchmarkDotNet/tree/master/samples)
#### Column Display
- **`CombinedParamsColumn`**
An alternative to `DefaultColumnProviders.Params` that displays all parameters in a single, customizable column.
- **`RecyclableParamsColumnProvider`**
An alternative to `DefaultColumnProviders.Params` that displays parameters in recyclable columns corresponding to parameter position rather than name.
- **`ParamWrapper`**
A generic wrapper to associate strongly typed parameter or argument values with a display text.
- **`JobColumnSelectionProvider`**
An alternative to `DefaultColumnProviders.Job`, with a user-defined selection of Job columns.
#### Configuration and Running
- **`BenchmarkRunInfos`**
A wrapper and extension for `BenchmarkConverter`, collecting the converted benchmarks, executing them, and optionally overriding any global and local Job configurations.
- **`ConfigExtensions`**
`ManualConfig` and `IConfig` extension methods for replacing parts of an existing config - for example, default columns with custom ones.
- **`WhatifFilter`**
An alternative to BenchmarkDotNet's `--list` command line option that prints a mock summary of all available benchmarks according to the current effective BechmarkDotnet configuration.
### [CI Feed](https://dev.azure.com/mawosoft-de/public/_packaging?_a=feed&feed=public)
If you use BenchmarkDotNet's CI builds (nightlies), you also need to use the latest CI builds here, because BenchmarkDotNet frequently introduces breaking API changes within their builds.
To consume the latest CI build, add the following feed to your `Nuget.Config`:
```
```
The CI builds have the next expected version number and are tagged as `-dev.`.
- Example of an official release: `Mawosoft.Extensions.BenchmarkDotNet.0.2.3.nupkg`
- Example of CI build: `Mawosoft.Extensions.BenchmarkDotNet.0.2.4-dev.112.nupkg`
To always use the latest CI build, use a package reference like
``