NBench.Runner
1.1.0
See the version list below for details.
dotnet add package NBench.Runner --version 1.1.0
NuGet\Install-Package NBench.Runner -Version 1.1.0
<PackageReference Include="NBench.Runner" Version="1.1.0" />
<PackageVersion Include="NBench.Runner" Version="1.1.0" />
<PackageReference Include="NBench.Runner" />
paket add NBench.Runner --version 1.1.0
#r "nuget: NBench.Runner, 1.1.0"
#:package NBench.Runner@1.1.0
#addin nuget:?package=NBench.Runner&version=1.1.0
#tool nuget:?package=NBench.Runner&version=1.1.0
Cross-platform performance benchmarking and testing framework for .NET applications.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp1.1 is compatible. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.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. |
-
.NETCoreApp 1.1
- Microsoft.NETCore.App (>= 1.1.2)
- NBench (>= 1.1.0)
- System.Collections.Specialized (>= 4.3.0)
-
.NETFramework 4.5.2
- NBench (>= 1.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on NBench.Runner:
Repository | Stars |
---|---|
cuteant/SpanNetty
Port of Netty(v4.1.51.Final) for .NET
|
|
newrelic/newrelic-dotnet-agent
The New Relic .NET language agent.
|
Version | Downloads | Last Updated | |
---|---|---|---|
1.2.2 | 170,559 | 7/24/2018 | |
1.2.1 | 3,435 | 7/11/2018 | |
1.2.0 | 1,719 | 7/10/2018 | |
1.1.0 | 5,820 | 7/2/2018 | |
1.0.4 | 20,749 | 6/16/2017 | |
1.0.3 | 1,508 | 6/10/2017 | |
1.0.2 | 1,328 | 6/2/2017 | |
1.0.1 | 5,980 | 3/31/2017 | |
1.0.0 | 2,075 | 3/15/2017 | |
0.3.4 | 18,659 | 12/16/2016 | |
0.3.3 | 5,255 | 12/8/2016 | |
0.3.2 | 1,362 | 12/8/2016 | |
0.3.1 | 10,952 | 8/16/2016 | |
0.3.0 | 3,655 | 5/24/2016 | |
0.2.2 | 1,644 | 5/3/2016 | |
0.2.1 | 2,259 | 4/7/2016 | |
0.2.0 | 1,321 | 4/6/2016 | |
0.1.6 | 7,530 | 2/15/2016 | |
0.1.5 | 5,237 | 12/10/2015 | |
0.1.4 | 1,309 | 12/10/2015 | |
0.1.3 | 1,364 | 12/8/2015 | |
0.1.2 | 1,375 | 12/8/2015 | |
0.1.1 | 1,420 | 12/7/2015 | |
0.1.0 | 1,484 | 12/5/2015 |
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).