diff --git a/GitVersion.yml b/GitVersion.yml index 718f947c..611a035c 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,5 +1,5 @@ mode: ContinuousDelivery -next-version: 1.1.0 +next-version: 1.1.0-beta.1 commit-message-incrementing: Disabled legacy-semver-padding: 0 branches: diff --git a/build.cake b/build.cake index 051a382e..38232aa1 100644 --- a/build.cake +++ b/build.cake @@ -51,8 +51,8 @@ Task("Versioning") OutputType = GitVersionOutput.Json }); - version = result.NuGetVersion; - versionNumber = result.MajorMinorPatch; + version = result.SemVer; + versionNumber = result.AssemblySemVer; }); Task("Build")