-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from SubPointSolutions/dev
SubPointSolutions.CakeBuildTools 0.1.0-beta5, March 2017
- Loading branch information
Showing
6 changed files
with
467 additions
and
7 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
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,31 @@ | ||
## 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 is an internal project of [SubPointSolutions](http://subpointsolutions.com), but you are welcome to use it as you wish. In case you have unexpected issues, feedback or keen to see new features, please open up a new issue directly at [GitHub issue tracker](https://github.com/SubPointSolutions/CakeBuildTools/issues). | ||
|
||
* [GitHub issue tracker](https://github.com/SubPointSolutions/CakeBuildTools/issues) |
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
Oops, something went wrong.