Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 412 Bytes

cake.md

File metadata and controls

11 lines (10 loc) · 412 Bytes

Cake Build

Add #addin Cake.GitVersioning to the top of your Cake Build script. See here for usage. See here for the VersionOracle usage.

Example

Task("GetVersion")
    .Does(() =>
{
    Information(GitVersioningGetVersion().SemVer2)
});