Subatomix.Build.Versioning.Semantic
1.1.0
Requires NuGet 4.8.0 or higher.
dotnet add package Subatomix.Build.Versioning.Semantic --version 1.1.0
NuGet\Install-Package Subatomix.Build.Versioning.Semantic -Version 1.1.0
<PackageReference Include="Subatomix.Build.Versioning.Semantic" Version="1.1.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Subatomix.Build.Versioning.Semantic --version 1.1.0
#r "nuget: Subatomix.Build.Versioning.Semantic, 1.1.0"
// Install Subatomix.Build.Versioning.Semantic as a Cake Addin #addin nuget:?package=Subatomix.Build.Versioning.Semantic&version=1.1.0 // Install Subatomix.Build.Versioning.Semantic as a Cake Tool #tool nuget:?package=Subatomix.Build.Versioning.Semantic&version=1.1.0
Subatomix.Build.Versioning.Semantic
Semi-automatic SemVer2-compatible versioning for .NET and MSBuild.
Features:
- Generates SemVer2 versions from Git branches, pull requests, and tags.
- Verifies that version-like Git tags match their code versions.
Status
In use by several projects.
Requirements
This package makes the following assumptions:
- .NET SDK-style project system
- Git source control
- Releases marked with Git tags like
v1.2.3
orrelease/1.2.3-rc.1
(a configurable prefix followed by a valid SemVer2 version)
Usage
Add a reference to this package in your project file or in a
Directory.Build.targets
file.
<ItemGroup>
<PackageReference
Include="Subatomix.Build.Versioning.Semantic"
Version="1.0.1"
PrivateAssets="all" />
</ItemGroup>
Set the version number in your project file or in a
Directory.Build.props
file. Use the VersionPrefix
MSBuild property only.
<PropertyGroup>
<VersionPrefix>1.2.3</VersionPrefix>
</PropertyGroup>
Pass the git refspec
into the build process using the Branch
MSBuild property.
dotnet build -c Release -p:Branch=refs/heads/mybranch
The build will generate a version like 1.2.3-mybranch.20201214.T154854Z
and
set both the Version
and VersionSuffix
MSBuild properties automatically.
To use a custom build number instead of the default date/time-based one, pass
the number to the build process using the Counter
MSBuild property.
dotnet build -c Release -p:Branch=refs/heads/mybranch -p:Counter=4567
The build will generate the version 1.2.3-mybranch.b.4567
.
To build a custom pre-release or a final release, use a version-like Git tag.
dotnet build -c Release -p:Branch=refs/tags/release/1.2.3-beta -p:Counter=4567
The build will generate the version 1.2.3-beta
. When the Git tag looks like
a SemVer2 version, the build uses that version verbatim and does not append a
timestamp or a build number.
Interaction With Build Servers
To communicate the generated version number to a build server, add one or more of the following MSBuild properties to one of your project files.
<PropertyGroup>
<SetAzurePipelinesBuildName>true</SetAzurePipelinesBuildName>
<SetGitHubActionsVersion>true</SetGitHubActionsVersion>
<SetTeamCityBuildNumber>true</SetTeamCityBuildNumber>
</PropertyGroup>
Custom Version-Like Tag Prefix
By default, this package expects version-like Git tags to have a release/
prefix. To use a different prefix, override the VersionTagPrefix
MSBuild
property. This can be useful if you prefer the v
prefix.
<PropertyGroup>
<VersionTagPrefix>v</VersionTagPrefix>
</PropertyGroup>
A custom prefix is useful to disambiguate the version-like Git tags of unrelated subprojects in a monorepo.
<PropertyGroup>
<VersionTagPrefix>MyProject/v</VersionTagPrefix>
</PropertyGroup>
Version Stamping
TODO
MSBuild Property Reference
Branch
The full git refspec of the code being built. The behavior of this package depends primarily on the format of the refspec:
refs/heads/foo
- Recognized as a branch named
foo
. - Sets the version suffix to
foo
followed by a build counter.
- Recognized as a branch named
refs/heads/foo/bar
- Recognized as a branch named
foo/bar
. - Sets the version suffix to
foo-bar
followed by a build counter.
- Recognized as a branch named
refs/pull/42
- Recognized as pull request 42.
- Sets the version suffix to
pr.42
followed by a build counter.
refs/tag/release/1.2.3-foo.42
- Recognized as a version-like Git tag with the pre-release version
1.2.3-foo.42
. - Emits a build error if the
VersionPrefix
property does not match the tag version,1.2.3
. - Sets the version suffix to
foo.42
followed by a build counter. - The
release/
prefix is configurable.
- Recognized as a version-like Git tag with the pre-release version
refs/tag/release/1.2.3
- Recognized as a version-like Git tag with the release version
1.2.3
. - Emits a build error if the
VersionPrefix
property does not match the tag version,1.2.3
. - Does not set a version suffix or append a build counter.
- The
release/
prefix is configurable.
- Recognized as a version-like Git tag with the release version
something else entirely
- Not recognized.
- Sets the version suffix to
something-else-entirely
followed by a build counter.
- empty or not set
- Sets the version suffix to
local
, without a build counter. This default is intended to ease local development.
- Sets the version suffix to
Counter
An arbitrary number to distinguish the current build from other builds of
the same refspec. If not set, the build generates a date/time-based
counter of the form yyyymmdd.ThhmmssZ
using the current UTC time.
StampOnBuild
TODO
SetAzurePipelinesBuildName
When true
, the build outputs magic text
that sets the name and $(Build.BuildNumber)
variable
of the current Azure DevOps pipeline run.
SetGitHubActionsVersion
When true
, the build outputs magic text
that sets the Version
output parameter
of the current workflow step.
SetTeamCityBuildNumber
When true
, the build outputs magic text
that sets the build number
of the current TeamCity build.
VersionTagPrefix
The prefix that identifies a version-like Git tag. The default value is
release/
.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.0 | 216 | 7/29/2024 |
1.1.0-rc.1 | 78 | 7/26/2024 |
1.0.1 | 3,629 | 10/14/2022 |
1.0.1-rc.1 | 118 | 10/14/2022 |
1.0.0 | 19,361 | 12/16/2020 |
1.0.0-rc.1 | 233 | 12/14/2020 |
0.0.0-pre.7 | 314 | 10/12/2020 |
0.0.0-pre.6 | 5,337 | 6/27/2020 |
0.0.0-pre.5 | 301 | 6/26/2020 |
0.0.0-pre.4 | 302 | 4/18/2020 |
0.0.0-pre.3 | 412 | 2/17/2020 |
0.0.0-pre.2 | 257 | 2/17/2020 |