From f4e99716ae165a0b89e18a3f68b88f9dc720e20b Mon Sep 17 00:00:00 2001 From: Rodney Littles II Date: Sat, 6 Jan 2018 09:58:37 -0600 Subject: [PATCH] Added git hash to AssemblyInformationVersion (#1560) --- GitVersion.yml | 1 + build.cake | 1 + 2 files changed, 2 insertions(+) diff --git a/GitVersion.yml b/GitVersion.yml index c2c68294b9..02ef9a4bdf 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,5 +1,6 @@ next-version: 8.0.0 assembly-versioning-scheme: None +assembly-informational-format: '{NuGetVersion}-{sha}' branches: master: mode: ContinuousDelivery diff --git a/build.cake b/build.cake index 27ddf70048..00331fdd8d 100644 --- a/build.cake +++ b/build.cake @@ -204,6 +204,7 @@ Task("BuildReactiveUI") // Due to https://github.com/NuGet/Home/issues/4790 and https://github.com/NuGet/Home/issues/4337 we // have to pass a version explicitly .WithProperty("Version", nugetVersion.ToString()) + .WithProperty("InformationalVersion", informationalVersion) .SetVerbosity(Verbosity.Minimal) .SetNodeReuse(false)); };