Cake.SimpleGitVer
1.3.0
dotnet add package Cake.SimpleGitVer --version 1.3.0
NuGet\Install-Package Cake.SimpleGitVer -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cake.SimpleGitVer" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cake.SimpleGitVer" Version="1.3.0" />
<PackageReference Include="Cake.SimpleGitVer" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Cake.SimpleGitVer --version 1.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cake.SimpleGitVer, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Cake.SimpleGitVer@1.3.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Cake.SimpleGitVer&version=1.3.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Cake.SimpleGitVer
A Cake addin to derive build versions from git describe and a simple, numeric tag convention.
This addin is intentionally lightweight: it shells out to the Git CLI (cross-platform) and parses the single-line output.
Tag convention
Create tags like:
AIX1000-v3.1.1.1097
Where the tag is:
<TagPrefix><Major>.<Minor>.<Patch>.<Build>
Then git describe will yield (examples):
- On the tag:
AIX1000-v3.1.1.1097 - 12 commits ahead:
AIX1000-v3.1.1.1097-12-gbb7f5a99c1 - Dirty working tree:
AIX1000-v3.1.1.1097-12-gbb7f5a99c1-dirty
The addin returns a rich result including BaseBuild, CommitsAhead, Sha, and IsDirty. Optionally, it can auto-increment the build component:
FinalBuild = BaseBuild + CommitsAhead(whenAutoIncrementBuildNumber = true)
Usage
Include an Add-In directive
#addin "nuget:?package=Cake.SimpleGitVer&loaddependencies=true"
Example
Task("Print-Version")
.Does(context =>
{
var settings = new SimpleGitVerSettings
{
// Example: "AIX1000-v"
TagPrefix = "AIX1000-v",
// Optional: path to the git executable
GitExe = "git",
// If true: FinalBuild = BaseBuild + CommitsAhead
AutoIncrementBuildNumber = true
};
var r = GetSimpleGitVer(settings);
Information("RawDescribe: {0}", r.RawDescribe);
Information("BaseVersion: {0}", r.BaseVersion);
Information("Version: {0}", r.Version);
Information("CommitsAhead: {0}", r.CommitsAhead);
Information("Sha: {0}", r.Sha);
Information("IsDirty: {0}", r.IsDirty);
});
API
Alias
SimpleGitResult GetSimpleGitVer(this ICakeContext context, SimpleGitVerSettings settings)
Result
public sealed record SimpleGitResult(
int Major,
int Minor,
int Patch,
int BaseBuild,
int FinalBuild,
int CommitsAhead,
string Sha,
bool IsDirty,
string RawDescribe,
string TagPrefix)
{
public Version BaseVersion => new(Major, Minor, Patch, BaseBuild);
public Version Version => new(Major, Minor, Patch, FinalBuild);
}
Settings
public sealed class SimpleGitVerSettings
{
public string TagPrefix { get; set; } = "";
public string GitExe { get; set; } = "git";
public bool AutoIncrementBuildNumber { get; set; } = true;
}
Notes
- The addin executes:
git describe --tags --long --dirty --match "<TagPrefix>*" - The output is expected to be a single line. If Git produces no output or an unexpected format, the addin throws a
CakeException. - If your build agent does not fetch tags,
git describewill fail. Ensure your CI checkout fetches tags.
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Cake.Common (>= 4.0.0)
- Cake.Core (>= 4.0.0)
-
net8.0
- Cake.Common (>= 4.0.0)
- Cake.Core (>= 4.0.0)
-
net9.0
- Cake.Common (>= 4.0.0)
- Cake.Core (>= 4.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fixed version naming, fixed repo url