From 87eb3eba06eafdbceceb8dd821ad936cf0c21559 Mon Sep 17 00:00:00 2001 From: Nick Chamberlain Date: Wed, 29 Mar 2017 13:01:22 -0400 Subject: [PATCH 1/2] increment version number and update release notes --- RELEASE_NOTES.md | 4 ++++ .../NBench.PerformanceCounters.csproj | 2 +- src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj | 2 +- src/NBench.Runner/NBench.Runner.csproj | 2 +- src/NBench/NBench.csproj | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6dff9f3a..fcb97e69 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +#### v1.0.1 March March 29 2017 + +This release resolves an issue with the v1.0.0 NuGet release for NBench.Runner in which clients installing the package via `Install-Package NBench.Runner` were not getting the NBench.dll dependency for NBench.Runner.exe. NBench.dll is now compiled into NBench.Runner.exe. + #### v1.0.0 March 14 2017 NBench v1.0.0 represents support for .NET Standard 1.6 for the NBench core library and a .NET Core 1.0 version of the NBench runner. diff --git a/src/NBench.PerformanceCounters/NBench.PerformanceCounters.csproj b/src/NBench.PerformanceCounters/NBench.PerformanceCounters.csproj index 4b8965de..9cfcd86f 100644 --- a/src/NBench.PerformanceCounters/NBench.PerformanceCounters.csproj +++ b/src/NBench.PerformanceCounters/NBench.PerformanceCounters.csproj @@ -4,7 +4,7 @@ Cross-platform performance benchmarking and testing framework for .NET applications. Copyright (c) Petabridge https://petabridge.com/ NBench - 1.0.0 + 1.0.1 Petabridge net452 NBench.PerformanceCounters diff --git a/src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj b/src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj index e0d5e252..85d01f50 100644 --- a/src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj +++ b/src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj @@ -5,7 +5,7 @@ Copyright (c) Petabridge https://petabridge.com/ NBench dotnet-nbench - 1.0.0 + 1.0.1 Petabridge netcoreapp1.0 Exe diff --git a/src/NBench.Runner/NBench.Runner.csproj b/src/NBench.Runner/NBench.Runner.csproj index b6700f54..61c8e01a 100644 --- a/src/NBench.Runner/NBench.Runner.csproj +++ b/src/NBench.Runner/NBench.Runner.csproj @@ -5,7 +5,7 @@ Copyright (c) Petabridge https://petabridge.com/ NBench NBench.Runner - 1.0.0 + 1.0.1 Petabridge net452 Exe diff --git a/src/NBench/NBench.csproj b/src/NBench/NBench.csproj index 029adf85..961611df 100644 --- a/src/NBench/NBench.csproj +++ b/src/NBench/NBench.csproj @@ -4,7 +4,7 @@ Cross-platform performance benchmarking and testing framework for .NET applications. Copyright (c) Petabridge https://petabridge.com/ NBench - 1.0.0 + 1.0.1 Petabridge net452;netstandard1.6 NBench From df932c118c9e5b5066002ef160b7edb257dfd3df Mon Sep 17 00:00:00 2001 From: Nick Chamberlain Date: Wed, 29 Mar 2017 13:05:53 -0400 Subject: [PATCH 2/2] added note about pwd being the .csproj folder for netcore apps --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 343af7ec..582e8e7b 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,8 @@ After adding this reference, run `dotnet restore` and the NBench .NET Core runne PS> dotnet nbench .\src\bin\Debug\MyPerfTests.dll output-directory="C:\Perf" ``` +**NOTE:** Your shell's working directory must be inside the folder containing the .csproj file with the above `` in order to run `dotnet nbench`. + ## Command Line Parameters ``` NBench.Runner.exe [assembly names] [output-directory={dir-path}] [configuration={file-path}] [include=MyTest*.Perf*,Other*Spec] [exclude=*Long*] [concurrent={true|false}]