Skip to content
#

cake

Here are 219 public repositories matching this topic...

augustoproiete
augustoproiete commented Mar 6, 2021

Recommendation

  • If you use Cake.DotNetTool.Module already on your builds, you should either:

  • (1) Upgrade Cake to version 1.1.0, and remove the Cake.DotNetTool.Module from your build script (as it's no longer needed)

or

  • (2) Pin Cake.DotNetTool.Module to a version compatible with the Cake version that you use. Cake.DotNetTool.Module version 1.0.1 is the last version co
Cake.MinVer
augustoproiete
augustoproiete commented Nov 19, 2020

Sometimes the MinVer generated version is the starting point to generate other (custom) representations of version(s), which may or may not be SemVer-compliant.

var version = MinVer();
string customVersion1 = null; // Initialized via Setup
string customVersion2 = null; // Initialized via Setup

Task("build")
    .Does(() =>
{
    // use customVersion1
    // use customVersion2
});

Improve this page

Add a description, image, and links to the cake topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the cake topic, visit your repo's landing page and select "manage topics."

Learn more