Skip to content

NBench v1.1 Production Release

Compare
Choose a tag to compare
@Aaronontheweb Aaronontheweb released this 02 Jul 04:11
· 48 commits to master since this release
f0b3f8c

v1.1.0 July 1 2018

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 Counters
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.