![]() |
VOOZH | about |
dotnet nbench is no longer needed as of NBench 2.0.0 - please see https://nbench.io/articles/quickstart.html for more information on how to run NBench.
dotnet add package NBench.Runner.DotNetCli --version 1.1.0
NuGet\Install-Package NBench.Runner.DotNetCli -Version 1.1.0
<PackageReference Include="NBench.Runner.DotNetCli" Version="1.1.0" />
<PackageVersion Include="NBench.Runner.DotNetCli" Version="1.1.0" />Directory.Packages.props
<PackageReference Include="NBench.Runner.DotNetCli" />Project file
paket add NBench.Runner.DotNetCli --version 1.1.0
#r "nuget: NBench.Runner.DotNetCli, 1.1.0"
#:package NBench.Runner.DotNetCli@1.1.0
#addin nuget:?package=NBench.Runner.DotNetCli&version=1.1.0Install as a Cake Addin
#tool nuget:?package=NBench.Runner.DotNetCli&version=1.1.0Install as a Cake Tool
Cross-platform performance benchmarking and testing framework for .NET applications.
Learn more about Target Frameworks and .NET Standard.
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 1.1.0 | 2,225 | 7/2/2018 | 1.1.0 is deprecated because it is no longer maintained. |
| 1.0.2 | 1,710 | 6/2/2017 | |
| 1.0.1 | 1,413 | 3/31/2017 | |
| 1.0.0 | 1,521 | 3/15/2017 |
Fixes several major issues with the `NBench.Runner` executable and being able to support .NET Core dependencies. This is the first set of fixes in a series of ongoing changes designed to help make NBench more user-friendly, extensible, and capable of all manner of interesting performance-related tasks.
New Feature: Explicitly Settable `Counter`s**
`Counter` instances can now be explicitly set to increment or decrement by a known value:
```
var counter = new Counter(new AtomicCounter(), new CounterMetricName("foo"));
counter.Increment(10);
counter.Decrement(2);
Console.WriteLine(counter.Current); // will print out 8
```
Read [the full set of changes in NBench v1.1 here](https://github.com/petabridge/NBench/milestone/4).