-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ appveyor/ci fixes + release notes template
- Loading branch information
1 parent
96a07de
commit 85dce4a
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## What's new in @Model.ReleaseTitle @Model.ReleaseVersion, @Model.ReleaseMonthAndYear | ||
|
||
@if(!System.String.IsNullOrEmpty(Model.AssemblyFileVersion)) | ||
{ | ||
<text> | ||
AssemblyFileVersion: @Model.AssemblyFileVersion | ||
</text> | ||
} | ||
|
||
@foreach(var releaseGroup in Model.ReleaseIssueGroups){ | ||
|
||
var items = releaseGroup.Issues; | ||
var label = releaseGroup.Label; | ||
var labelTitle = releaseGroup.LabelTitle; | ||
|
||
if (items.Count > 0) | ||
{ | ||
<text> | ||
### @labelTitle | ||
@foreach (var item in items) | ||
{ | ||
<text>* <a href='@item.Url'>#@item.Number</a>, @item.Title</text> | ||
} | ||
</text> | ||
} | ||
} | ||
|
||
### 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) |