NBench.Runner 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package NBench.Runner --version 1.0.3
NuGet\Install-Package NBench.Runner -Version 1.0.3
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" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NBench.Runner --version 1.0.3
#r "nuget: NBench.Runner, 1.0.3"
#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 as a Cake Addin
#addin nuget:?package=NBench.Runner&version=1.0.3

// Install NBench.Runner as a Cake Tool
#tool nuget:?package=NBench.Runner&version=1.0.3

NBench is a cross-platform automated performance profiling and testing framework for.NET applications.

Product 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. 
.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on NBench.Runner:

Repository Stars
cuteant/SpanNetty
Port of Netty(v4.1.51.Final) for .NET
Version Downloads Last updated
1.2.2 121,472 7/24/2018
1.2.1 2,774 7/11/2018
1.2.0 1,262 7/10/2018
1.1.0 5,542 7/2/2018
1.0.4 17,219 6/16/2017
1.0.3 1,176 6/10/2017
1.0.2 1,016 6/2/2017
1.0.1 5,628 3/31/2017
1.0.0 1,701 3/15/2017
0.3.4 11,640 12/16/2016
0.3.3 4,948 12/8/2016
0.3.2 1,045 12/8/2016
0.3.1 10,629 8/16/2016
0.3.0 3,265 5/24/2016
0.2.2 1,340 5/3/2016
0.2.1 1,954 4/7/2016
0.2.0 1,006 4/6/2016
0.1.6 7,232 2/15/2016
0.1.5 3,608 12/10/2015
0.1.4 1,008 12/10/2015
0.1.3 1,044 12/8/2015
0.1.2 1,051 12/8/2015
0.1.1 1,107 12/7/2015
0.1.0 1,090 12/5/2015

This release resolves issues with NuGet deployment of the dedicated NBench.Runner.DotNetCli runner that was originally designed to be used for .NET Core projects.  The issue is detailed by [#200](https://github.com/petabridge/NBench/issues/200) and resolved with PR [#201](https://github.com/petabridge/NBench/pull/201).
Important breaking change:
NBench.Runner.DotNetCli is being deprecated (temporarily) as the supported means of running the NBench runner with a benchmark assembly that targets .NET Core.  Instead, the original [NBench.Runner](NBench.Runner) will come packaged with 2 additional executables that are compatible with .NET Core.  Originally, per the instructions on the README, to run the **.NET 4.5.2** you would run the following commands:
```
PS> Install-Package NBench.Runner
PS> .\packages\NBench.Runner\NBench.Runner.exe .\src\bin\Debug\MyPerfTests.dll output-directory="C:\Perf
```
Since the new NBench.Runner NuGet package ships the additional .NET Core runner, the folder structure of the downloaded runner is as follows:
lib/
net452/
NBench.Runner.exe
netcoreapp1.1/
win7-x64/
NBench.Runner.exe
debian8-x64/
NBench.Runner
The above way to run the .NET 4.5.2 runner, hence, changes to:
```
PS> Install-Package NBench.Runner
PS> .\packages\NBench.Runner\lib\net452\NBench.Runner.exe .\src\bin\Debug\net452\MyPerfTests.dll output-directory="C:\Perf
```
For .NET Core support (meaning running a benchmark that has been targeted for `netcoreapp1.1` or `netstandard1.6`, you will run the appropriate NBench.Runner.exe for your architecture:
```
PS> Install-Package NBench.Runner
PS> .\packages\NBench.Runner\lib\netcoreapp1.1\win7-x64\NBench.Runner.exe .\src\bin\Debug\netcoreapp1.1\MyPerfTests.dll output-directory="C:\Perf
```
or, on Debian 8:
```
PS> Install-Package NBench.Runner
PS> .\packages\NBench.Runner\lib\netcoreapp1.1\debian8-x64\NBench.Runner.exe .\src\bin\Debug\netcoreapp1.1\MyPerfTests.dll output-directory="C:\Perf
```
Plans will be made to re-introduce support for NBench.Runner.DotNetCli which allows for the usage of NBench as a `DotNetCliToolReference`.