NBench.PerformanceCounters
1.1.0
See the version list below for details.
dotnet add package NBench.PerformanceCounters --version 1.1.0
NuGet\Install-Package NBench.PerformanceCounters -Version 1.1.0
<PackageReference Include="NBench.PerformanceCounters" Version="1.1.0" />
<PackageVersion Include="NBench.PerformanceCounters" Version="1.1.0" />
<PackageReference Include="NBench.PerformanceCounters" />
paket add NBench.PerformanceCounters --version 1.1.0
#r "nuget: NBench.PerformanceCounters, 1.1.0"
#:package NBench.PerformanceCounters@1.1.0
#addin nuget:?package=NBench.PerformanceCounters&version=1.1.0
#tool nuget:?package=NBench.PerformanceCounters&version=1.1.0
Windows only. Adds performance counter support to NBench measurements.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5.2
- NBench (>= 1.1.0)
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.2.2 | 7,946 | 7/24/2018 |
1.2.1 | 2,102 | 7/11/2018 |
1.2.0 | 1,366 | 7/10/2018 |
1.1.0 | 1,155 | 7/2/2018 |
1.0.4 | 2,188 | 6/16/2017 |
1.0.3 | 1,233 | 6/11/2017 |
1.0.2 | 1,232 | 6/2/2017 |
1.0.1 | 1,269 | 3/31/2017 |
1.0.0 | 1,305 | 3/15/2017 |
0.3.4 | 21,166 | 12/16/2016 |
0.3.3 | 1,557 | 12/8/2016 |
0.3.2 | 1,301 | 12/8/2016 |
0.3.1 | 1,445 | 8/16/2016 |
0.3.0 | 3,868 | 5/24/2016 |
0.2.2 | 1,313 | 5/3/2016 |
0.2.1 | 1,906 | 4/7/2016 |
0.2.0 | 1,293 | 4/6/2016 |
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).