From 85dce4a6681b696c8d2d2673dab2d4de734e09c2 Mon Sep 17 00:00:00 2001 From: Support Date: Fri, 17 Mar 2017 01:08:51 +1100 Subject: [PATCH] + 1.2.120-beta3 + appveyor/ci fixes + release notes template --- SPMeta2/Build/Build.csproj | 1 + SPMeta2/Build/github-release-notes.chtml | 33 ++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 SPMeta2/Build/github-release-notes.chtml diff --git a/SPMeta2/Build/Build.csproj b/SPMeta2/Build/Build.csproj index 35cf0f3e5..f58b1776c 100644 --- a/SPMeta2/Build/Build.csproj +++ b/SPMeta2/Build/Build.csproj @@ -47,6 +47,7 @@ + diff --git a/SPMeta2/Build/github-release-notes.chtml b/SPMeta2/Build/github-release-notes.chtml new file mode 100644 index 000000000..8ff5cea54 --- /dev/null +++ b/SPMeta2/Build/github-release-notes.chtml @@ -0,0 +1,33 @@ +## What's new in @Model.ReleaseTitle @Model.ReleaseVersion, @Model.ReleaseMonthAndYear + +@if(!System.String.IsNullOrEmpty(Model.AssemblyFileVersion)) +{ + +AssemblyFileVersion: @Model.AssemblyFileVersion + +} + +@foreach(var releaseGroup in Model.ReleaseIssueGroups){ + +var items = releaseGroup.Issues; +var label = releaseGroup.Label; +var labelTitle = releaseGroup.LabelTitle; + +if (items.Count > 0) +{ + +### @labelTitle +@foreach (var item in items) +{ +* #@item.Number, @item.Title +} + +} +} + +### Feature requests, support and contributions +This project is a part of the [SPMeta2 ecosystem](http://subpointsolutions.com). In case you have unexpected issues, feedback or keen to see new features, please join [Yammer Community](https://www.yammer.com/spmeta2feedback), check out [documentation](http://docs.subpointsolutions.com/spmeta2/) or post your feedback or issues directly at [GitHub issue tracker](https://github.com/SubPointSolutions/spmeta2/issues). Enterprise support and SLA is [available upon request](http://subpointsolutions.com/services/). + +* [Yammer Community](https://www.yammer.com/spmeta2feedback) +* [@Model.ProjectName documentation](http://docs.subpointsolutions.com/spmeta2/) +* [GitHub issue tracker](https://github.com/SubPointSolutions/spmeta2/issues) \ No newline at end of file