NBench.Runner.DotNetCli
1.1.0
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" />
paket add NBench.Runner.DotNetCli --version 1.1.0
#r "nuget: NBench.Runner.DotNetCli, 1.1.0"
// Install NBench.Runner.DotNetCli as a Cake Addin #addin nuget:?package=NBench.Runner.DotNetCli&version=1.1.0 // Install NBench.Runner.DotNetCli as a Cake Tool #tool nuget:?package=NBench.Runner.DotNetCli&version=1.1.0
Cross-platform performance benchmarking and testing framework for .NET applications.
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 1.1
- Microsoft.NETCore.App (>= 1.1.2)
- NBench (>= 1.1.0)
- System.Collections.Specialized (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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).