From 5464e4397acb6d0d885f141b82c2659ad6faf271 Mon Sep 17 00:00:00 2001 From: Andrey Akinshin Date: Sat, 4 Mar 2017 15:29:46 +0500 Subject: [PATCH] Improved versioning system, part 2 --- build/common.props | 7 +++---- docs/guide/NuGet.md | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/build/common.props b/build/common.props index c10516844..2f090dee3 100644 --- a/build/common.props +++ b/build/common.props @@ -39,16 +39,15 @@ $(BUILD_NUMBER) 0 - -nightly - -develop + -develop + - PRERELEASE_NIGHTLY PRERELEASE_DEVELOP + PRERELEASE_NIGHTLY $(DefineConstants);$(PrereleaseLabelConstants) - $(Major).$(Minor).$(Revision).$(BuildNumber) $(Major).$(Minor).$(Revision).$(BuildNumber) $(Major).$(Minor).$(Revision).$(BuildNumber)$(PrereleaseLabel) diff --git a/docs/guide/NuGet.md b/docs/guide/NuGet.md index d46e8fad0..ddc4248e8 100644 --- a/docs/guide/NuGet.md +++ b/docs/guide/NuGet.md @@ -26,7 +26,7 @@ These versions are available from the official NuGet feed. * Example of `BenchmarkDotNetInfo.FullTitle`: `BenchmarkDotNet v0.10.3`. ### Nightly -If you want to check a nightly prerelease version of the BenchmarkDotNet, add the `https://ci.appveyor.com/nuget/benchmarkdotnet` feed in the `` section of your `NuGet.config`: +If you want to use a nightly version of the BenchmarkDotNet, add the `https://ci.appveyor.com/nuget/benchmarkdotnet` feed in the `` section of your `NuGet.config`: ```xml @@ -34,9 +34,9 @@ If you want to check a nightly prerelease version of the BenchmarkDotNet, add th ``` -Now you can install the packages from the `bdn-nightly` feed (don't forget to enable the "Include prerelease" checkbox). +Now you can install the packages from the `bdn-nightly` feed. -* Example of the main NuGet package: `BenchmarkDotNet.0.10.3.13-nightly.nupkg`. +* Example of the main NuGet package: `BenchmarkDotNet.0.10.3.13.nupkg`. * Example of `BenchmarkDotNetInfo.FullTitle`: `BenchmarkDotNet v0.10.3.13-nightly`. ### Develop