NBench.Runner.DotNetCli 1.1.0

Additional Details

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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NBench.Runner.DotNetCli" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NBench.Runner.DotNetCli --version 1.1.0
#r "nuget: NBench.Runner.DotNetCli, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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.1.0 1,390 7/2/2018
1.0.2 1,271 6/2/2017
1.0.1 967 3/31/2017
1.0.0 1,084 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).