Skip to content

Commit

Permalink
Merge pull request #184 from heynickc/v1.0.1-release
Browse files Browse the repository at this point in the history
v1.0.1 Release Notes and Version Increment
  • Loading branch information
Aaronontheweb authored Mar 29, 2017
2 parents 5380eba + df932c1 commit da0b403
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<DotNetCliToolReference>` 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}]
Expand Down
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Cross-platform performance benchmarking and testing framework for .NET applications.</Description>
<Copyright>Copyright (c) Petabridge https://petabridge.com/</Copyright>
<AssemblyTitle>NBench</AssemblyTitle>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>
<Authors>Petabridge</Authors>
<TargetFramework>net452</TargetFramework>
<AssemblyName>NBench.PerformanceCounters</AssemblyName>
Expand Down
2 changes: 1 addition & 1 deletion src/NBench.Runner.DotNetCli/NBench.Runner.DotNetCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright (c) Petabridge https://petabridge.com/</Copyright>
<AssemblyTitle>NBench</AssemblyTitle>
<AssemblyName>dotnet-nbench</AssemblyName>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>
<Authors>Petabridge</Authors>
<TargetFrameworks>netcoreapp1.0</TargetFrameworks>
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/NBench.Runner/NBench.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Copyright>Copyright (c) Petabridge https://petabridge.com/</Copyright>
<AssemblyTitle>NBench</AssemblyTitle>
<AssemblyName>NBench.Runner</AssemblyName>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>
<Authors>Petabridge</Authors>
<TargetFramework>net452</TargetFramework>
<OutputType>Exe</OutputType>
Expand Down
2 changes: 1 addition & 1 deletion src/NBench/NBench.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>Cross-platform performance benchmarking and testing framework for .NET applications.</Description>
<Copyright>Copyright (c) Petabridge https://petabridge.com/</Copyright>
<AssemblyTitle>NBench</AssemblyTitle>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.0.1</VersionPrefix>
<Authors>Petabridge</Authors>
<TargetFrameworks>net452;netstandard1.6</TargetFrameworks>
<AssemblyName>NBench</AssemblyName>
Expand Down

0 comments on commit da0b403

Please sign in to comment.