build versioning

This commit is contained in:
Jamie.Rees 2017-09-01 13:36:41 +01:00
commit 496e086e32
2 changed files with 10 additions and 1 deletions

View file

@ -1,5 +1,12 @@
# Changelog
## (unreleased)
### **New Features**
- Updated CHangelog. [Jamie.Rees]
## v3.0.0 (2017-09-01)
### **New Features**

View file

@ -80,7 +80,9 @@ Task("SetVersionInfo")
Information("GitResults -> {0}", versionInfo.Dump());
var fullVer = versionInfo.MajorMinorPatch + "-" + versionInfo.BranchName + "-" + versionInfo.BuildMetaData;
Information(@"Build:{0}",AppVeyor.Environment.Build.Dump());
var fullVer = AppVeyor.Environment.Build.Version + "-" + versionInfo.BranchName;
buildSettings.ArgumentCustomization = args => args.Append("/p:SemVer=" + versionInfo.AssemblySemVer);