Summary
Parses all release notes.
Syntax
[CakeMethodAlias]
public static IReadOnlyList<ReleaseNotes> ParseAllReleaseNotes(this ICakeContext context, FilePath filePath)
Examples
var releaseNotes = ParseAllReleaseNotes("./ReleaseNotes.md");
foreach(var releaseNote in releaseNotes)
{
Information("Version: {0}", releaseNote.Version);
foreach(var note in releaseNote.Notes)
{
Information("\t{0}", note);
}
}
Attributes
Parameters
Return Value
Type |
Description |
IReadOnlyList<ReleaseNotes> |
All release notes. |