From bf8b95109b8b8ac0499e12f8e88207cdd8591b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Lain=C3=A9?= Date: Sun, 22 May 2016 18:22:33 +0200 Subject: [PATCH] Add missing GitVersion return values --- src/Cake.Common/Tools/GitVersion/GitVersion.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/Cake.Common/Tools/GitVersion/GitVersion.cs b/src/Cake.Common/Tools/GitVersion/GitVersion.cs index 2a9273ef69..20237a43e4 100644 --- a/src/Cake.Common/Tools/GitVersion/GitVersion.cs +++ b/src/Cake.Common/Tools/GitVersion/GitVersion.cs @@ -94,5 +94,20 @@ public sealed class GitVersion /// Gets or sets the nuget version. /// public string NuGetVersion { get; set; } + + /// + /// Gets or sets the commits since version source + /// + public string CommitsSinceVersionSource { get; set; } + + /// + /// Gets or sets the commits since version source padded + /// + public string CommitsSinceVersionSourcePadded { get; set; } + + /// + /// Gets or sets the commit date + /// + public string CommitDate { get; set; } } }