GitInfo 2.3.0
See the version list below for details.
dotnet add package GitInfo --version 2.3.0
NuGet\Install-Package GitInfo -Version 2.3.0
<PackageReference Include="GitInfo" Version="2.3.0" />
paket add GitInfo --version 2.3.0
#r "nuget: GitInfo, 2.3.0"
// Install GitInfo as a Cake Addin #addin nuget:?package=GitInfo&version=2.3.0 // Install GitInfo as a Cake Tool #tool nuget:?package=GitInfo&version=2.3.0
GitInfo
Git Info from MSBuild, C# and VB
A fresh and transparent approach to Git information retrieval from MSBuild and Code without using any custom tasks or compiled code and tools, obscure settings, format strings, etc.
Usage
After installing via NuGet:
PM> Install-Package GitInfo
By default, if the containing project is a C#, F# or VB project, a compile-time generated source file will contain
all the git information and can be accessed from anywhere within the assembly, as constants in a
ThisAssembly
(partial) class and its nested Git
static class:
Console.WriteLine(ThisAssembly.Git.Commit);
All generated constants also have a Summary documentation tag that shows the current value in the intellisense tooltip, making it easier to see what the different values contain:
NOTE: you may need to close and reopen the solution in order for Visual Studio to refresh intellisense and show the ThisAssembly type the first time after installing the package.
With this information at your fingertips, you can build any versioning attributes you want, with whatever information you want, without resorting to settings, format strings or anything, just plain code:
C#:
[assembly: AssemblyVersion (ThisAssembly.Git.BaseVersion.Major + "." + ThisAssembly.Git.BaseVersion.Minor + "." + ThisAssembly.Git.BaseVersion.Patch)]
[assembly: AssemblyFileVersion (ThisAssembly.Git.SemVer.Major + "." + ThisAssembly.Git.SemVer.Minor + "." + ThisAssembly.Git.SemVer.Patch)]
[assembly: AssemblyInformationalVersion (
ThisAssembly.Git.SemVer.Major + "." +
ThisAssembly.Git.SemVer.Minor + "." +
ThisAssembly.Git.Commits + "-" +
ThisAssembly.Git.Branch + "+" +
ThisAssembly.Git.Commit)]
F#:
module AssemblyInfo
open System.Reflection
[<assembly: AssemblyVersion (ThisAssembly.Git.BaseVersion.Major + "." + ThisAssembly.Git.BaseVersion.Minor + "." + ThisAssembly.Git.BaseVersion.Patch)>]
[<assembly: AssemblyFileVersion (ThisAssembly.Git.SemVer.Major + "." + ThisAssembly.Git.SemVer.Minor + "." + ThisAssembly.Git.SemVer.Patch)>]
[<assembly: AssemblyInformationalVersion (
ThisAssembly.Git.SemVer.Major + "." +
ThisAssembly.Git.SemVer.Minor + "." +
ThisAssembly.Git.Commits + "-" +
ThisAssembly.Git.Branch + "+" +
ThisAssembly.Git.Commit)>]
do ()
VB:
<Assembly: AssemblyVersion(ThisAssembly.Git.BaseVersion.Major + "." + ThisAssembly.Git.BaseVersion.Minor + "." + ThisAssembly.Git.BaseVersion.Patch)>
<Assembly: AssemblyFileVersion(ThisAssembly.Git.SemVer.Major + "." + ThisAssembly.Git.SemVer.Minor + "." + ThisAssembly.Git.SemVer.Patch)>
<Assembly: AssemblyInformationalVersion(
ThisAssembly.Git.SemVer.Major + "." +
ThisAssembly.Git.SemVer.Minor + "." +
ThisAssembly.Git.Commits + "-" +
ThisAssembly.Git.Branch + "+" +
ThisAssembly.Git.Commit)>
MSBuild:
<ItemGroup>
<PackageReference Include="GitInfo" PrivateAssets="all" />
</ItemGroup>
<Target Name="PopulateInfo" DependsOnTargets="GitInfo" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<RepositoryBranch>$(GitBranch)</RepositoryBranch>
<RepositoryCommit>$(GitCommit)</RepositoryCommit>
<SourceRevisionId>$(GitBranch) $(GitCommit)</SourceRevisionId>
</PropertyGroup>
</Target>
Because this information is readily available whenever you build the project, you never depend on CI build scripts that generate versions for you, and you can always compile locally exactly the same version of an assembly that was built by a CI server.
You can read more about this project at the GitInfo announcement blog post.
MSBuild
If you want to set other properties in your project, such as $(Version)
or $(PackageVersion)
based on the populated values from GitInfo, you must do so from a target, such as:
<Target Name="_SetVersion" BeforeTargets="GetAssemblyVersion;GenerateNuspec;GetPackageContents">
<PropertyGroup>
<Version>$(GitSemVerMajor).$(GitSemVerMinor).$(GitSemVerPatch)$(GitSemVerDashLabel)+$(GitBranch).$(GitCommit)</Version>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
</Target>
In this case, we're setting the version and package version.
Details
Exposes the following information for use directly from any MSBuild target that depends on the GitInfo target:
$(GitRepositoryUrl)
$(GitBranch)
$(GitCommit)
$(GitCommitDate)
$(GitCommits)
$(GitTag)
$(GitBaseTag)
$(GitBaseVersionMajor)
$(GitBaseVersionMinor)
$(GitBaseVersionPatch)
$(GitSemVerMajor)
$(GitSemVerMinor)
$(GitSemVerPatch)
$(GitSemVerLabel)
$(GitSemVerDashLabel)
$(GitSemVerSource)
$(GitIsDirty)
From C#, F# and VB, by default code is generated too so that the same information can be accessed from code, to construct your own assembly/file version attributes with whatever format you want:
[assembly: AssemblyVersion (ThisAssembly.Git.SemVer.Major + "." + ThisAssembly.Git.SemVer.Minor + "." + ThisAssembly.Git.SemVer.Patch)]
[assembly: AssemblyInformationalVersion (
ThisAssembly.Git.SemVer.Major + "." +
ThisAssembly.Git.SemVer.Minor + "." +
ThisAssembly.Git.SemVer.Patch + "-" +
ThisAssembly.Git.Branch + "+" +
ThisAssembly.Git.Commit)]
// i..e ^: 1.0.2-main+c218617
NOTE: you may need to close and reopen the solution in order for Visual Studio to refresh intellisense and show the ThisAssembly type right after package installation for the first time.
All generated constants also have a Summary documentation tag that shows the current value in the intellisense tooltip, making it very easy to see what the different values contain.
The available constants from code are:
ThisAssembly.Git.RepositoryUrl
ThisAssembly.Git.Branch
ThisAssembly.Git.Commit
ThisAssembly.Git.Commits
ThisAssembly.Git.Tag
ThisAssembly.Git.BaseTag
ThisAssembly.Git.BaseVersion.Major
ThisAssembly.Git.BaseVersion.Minor
ThisAssembly.Git.BaseVersion.Patch
ThisAssembly.Git.SemVer.Major
ThisAssembly.Git.SemVer.Minor
ThisAssembly.Git.SemVer.Patch
ThisAssembly.Git.SemVer.Label
ThisAssembly.Git.SemVer.DashLabel
ThisAssembly.Git.SemVer.Source
ThisAssembly.Git.IsDirty
Available MSBuild properties:
$(GitThisAssembly): set to 'false' to prevent assembly
metadata and constants generation.
$(GitThisAssemblyMetadata): set to 'false' to prevent assembly
metadata generation only. Defaults
to 'false'.
$(ThisAssemblyNamespace): allows overriding the namespace
for the ThisAssembly class.
Defaults to the global namespace.
$(GitRemote): name of remote to get repository url for.
Defaults to 'origin'.
$(GitDefaultBranch): determines the base branch used to
calculate commits on top of current branch.
Defaults to 'master'.
$(GitVersionFile): determines the name of a file in the Git
repository root used to provide the base
version info.
Defaults to 'GitInfo.txt'.
$(GitInfoReportImportance): allows rendering all the retrieved
git information with the specified
message importance ('high',
'normal' or 'low').
Defaults to 'low'.
$(GitIgnoreBranchVersion) and $(GitIgnoreTagVersion): determines
whether the branch and tags (if any)
will be used to find a base version.
Defaults to empty value (no ignoring).
$(GitSkipCache): whether to cache the Git information determined
in a previous build in a GitInfo.cache for
performance reasons.
Defaults to empty value (no ignoring).
$(GitNameRevOptions): Options passed to git name-rev when finding
a branch name for the current commit (Detached head). The default is
'--refs=refs/heads/* --no-undefined --alwas'
meaning branch names only, falling back to commit hash.
For legacy behavior where $(GitBranch) for detached head
can also be a tag name, use '--refs=refs/*'.
Refs can be included and excluded, see git name-rev docs.
$(GitTagRegex): Regular expression used with git describe to filter the tags
to consider for base version lookup.
Defaults to * (all)
$(GitBaseVersionRegex): Regular expression used to match and validate valid base versions
in branch, tag or file sources. By default, matches any string that
*ends* in a valid SemVer2 string.
Defaults to 'v?(?<MAJOR>\d+)\.(?<MINOR>\d+)\.(?<PATCH>\d+)(?:\-(?<LABEL>[\dA-Za-z\-\.]+))?$|^(?<LABEL>[\dA-Za-z\-\.]+)\-v?(?<MAJOR>\d+)\.(?<MINOR>\d+)\.(?<PATCH>\d+)$'
Goals
- No compiled code or tools → 100% transparency
- Trivially added/installed via a NuGet package
- No format strings or settings to learn
- Single well-structured .targets file with plain MSBuild and no custom tasks
- Optional embedding of Git info in assembly as metadata
- Optional use of Git info to build arbitrary assembly/file version information, both in C# as well as VB.
- Trivially modified/improved generated code by just adjusting a C# or F# or VB template included in the NuGet package
- Easily modified/improved by just adjusting a single .targets file
- 100% incremental build-friendly and high-performing (all proper Inputs/Outputs in place, smart caching of Git info, etc.)
Sponsors
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages (11)
Showing the top 5 NuGet packages that depend on GitInfo:
Package | Downloads |
---|---|
Aqovia.PactProducerVerifier.AspNetCore
Pact Producer Test for aspnet core sites |
|
PH.RollingZipRotatorLog4net
A netstandard2.0 Zip utility to perform a very simple log4net file rotation. The code perform a zip-compression on every log-rotated file and delete it, watching on log4net output directory reading settings of appenders. |
|
Zooqle.Net
A .NET Standard library for searching torrents on Zooqle. |
|
BizStream.NET.Sdk
Core build and release configuration for packages and libraries distributed by BizStream. |
|
SPLogging.Web
Web Log helper ใช้สำหรับ ช่วยเก็บค่า sesion และ อื่นๆ สำหรับ log |
GitHub repositories (37)
Showing the top 5 popular GitHub repositories that depend on GitInfo:
Repository | Stars |
---|---|
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
|
|
xamarin/Xamarin.Forms
Xamarin.Forms is no longer supported. Migrate your apps to .NET MAUI.
|
|
EventStore/EventStore
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
|
|
xamarin/xamarin-macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
|
|
VitalElement/AvalonStudio
Cross platform IDE and Shell
|
Version | Downloads | Last updated |
---|---|---|
3.5.0 | 1,084 | 11/2/2024 |
3.3.5 | 185,508 | 5/13/2024 |
3.3.4 | 91,767 | 2/15/2024 |
3.3.3 | 324,727 | 8/30/2023 |
3.3.2 | 403 | 8/30/2023 |
3.3.1 | 15,742 | 8/11/2023 |
3.3.0 | 659 | 8/11/2023 |
3.2.0 | 4,938 | 8/11/2023 |
2.3.0 | 770,695 | 11/18/2022 |
2.2.1 | 13,571 | 11/16/2022 |
2.2.0 | 1,511,122 | 8/26/2021 |
2.1.2 | 1,198,037 | 9/24/2020 |
2.1.1 | 839 | 9/24/2020 |
2.0.40 | 2,263 | 9/24/2020 |
2.0.39 | 3,388 | 9/23/2020 |
2.0.38 | 1,493 | 9/21/2020 |
2.0.37 | 1,104 | 9/20/2020 |
2.0.36 | 755 | 9/20/2020 |
2.0.35 | 747 | 9/20/2020 |
2.0.34 | 8,781 | 9/11/2020 |
2.0.33 | 11,595 | 8/28/2020 |
2.0.32 | 705 | 8/28/2020 |
2.0.31 | 66,948 | 8/3/2020 |
2.0.30 | 14,770 | 7/27/2020 |
2.0.29 | 53,687 | 7/22/2020 |
2.0.28 | 733 | 7/22/2020 |
2.0.27 | 733 | 7/22/2020 |
2.0.26 | 451,411 | 12/16/2019 |
2.0.25 | 1,678 | 12/13/2019 |
2.0.21 | 90,877 | 10/15/2019 |
2.0.20 | 653,719 | 11/13/2018 |
2.0.19 | 11,978 | 11/2/2018 |
2.0.18 | 104,061 | 9/26/2018 |
2.0.17 | 21,105 | 9/10/2018 |
2.0.16 | 1,039 | 9/10/2018 |
2.0.15 | 65,676 | 8/14/2018 |
2.0.14 | 2,798 | 8/3/2018 |
2.0.11 | 340,970 | 6/1/2018 |
2.0.10 | 33,411 | 2/21/2018 |
2.0.9 | 1,446 | 2/20/2018 |
2.0.8 | 15,931 | 11/30/2017 |
2.0.7 | 7,408 | 11/30/2017 |
2.0.6 | 19,013 | 10/22/2017 |
2.0.5 | 1,181 | 10/19/2017 |
2.0.3 | 8,487 | 10/18/2017 |
2.0.2 | 3,313 | 9/29/2017 |
2.0.1 | 89,263 | 8/24/2017 |
2.0.0 | 3,997 | 8/16/2017 |
1.1.72 | 2,171 | 8/7/2017 |
1.1.71 | 6,253 | 7/10/2017 |
1.1.70 | 1,138 | 7/10/2017 |
1.1.68 | 1,315 | 7/7/2017 |
1.1.67 | 1,436 | 7/4/2017 |
1.1.66 | 1,552 | 6/23/2017 |
1.1.65 | 1,439 | 6/15/2017 |
1.1.63 | 1,495 | 6/15/2017 |
1.1.62 | 2,607 | 6/4/2017 |
1.1.61 | 4,585 | 5/31/2017 |
1.1.60 | 1,958 | 5/16/2017 |
1.1.59 | 16,100 | 5/11/2017 |
1.1.58 | 1,433 | 5/5/2017 |
1.1.57 | 1,339 | 4/29/2017 |
1.1.56 | 1,156 | 4/28/2017 |
1.1.55 | 6,559 | 4/26/2017 |
1.1.54 | 1,162 | 4/26/2017 |
1.1.53 | 1,960 | 4/12/2017 |
1.1.48 | 3,507 | 2/10/2017 |
1.1.47 | 1,116 | 2/10/2017 |
1.1.45 | 2,768 | 1/27/2017 |
1.1.44 | 1,126 | 1/27/2017 |
1.1.43 | 1,227 | 1/25/2017 |
1.1.41 | 1,168 | 1/25/2017 |
1.1.40 | 1,533 | 1/6/2017 |
1.1.39 | 1,474 | 12/26/2016 |
1.1.38 | 1,948 | 12/26/2016 |
1.1.37 | 1,420 | 12/12/2016 |
1.1.35 | 2,189 | 11/29/2016 |
1.1.34 | 1,509 | 11/24/2016 |
1.1.31 | 1,903 | 9/13/2016 |
1.1.30 | 1,213 | 9/13/2016 |
1.1.29 | 1,855 | 9/3/2016 |
1.1.28 | 2,415 | 8/10/2016 |
1.1.27 | 1,290 | 8/8/2016 |
1.1.26 | 1,179 | 8/8/2016 |
1.1.25 | 2,804 | 7/28/2016 |
1.1.24 | 1,452 | 7/28/2016 |
1.1.23 | 1,458 | 7/28/2016 |
1.1.22 | 1,541 | 7/28/2016 |
1.1.20 | 2,226 | 6/4/2016 |
1.1.19 | 1,302 | 5/29/2016 |
1.1.17 | 1,208 | 5/26/2016 |
1.1.15 | 3,188 | 5/23/2016 |
1.1.14 | 2,391 | 5/22/2016 |
1.1.13 | 1,302 | 5/19/2016 |
1.1.12 | 3,360 | 4/24/2016 |
1.1.10 | 1,397 | 4/8/2016 |
1.1.9 | 1,251 | 3/31/2016 |
1.1.8 | 1,202 | 3/31/2016 |
1.1.7 | 1,202 | 3/31/2016 |
1.1.5 | 1,742 | 3/16/2016 |
1.1.4 | 1,211 | 3/16/2016 |
1.1.2 | 1,259 | 3/14/2016 |
1.1.1 | 1,839 | 3/12/2016 |
1.1.0 | 1,317 | 3/11/2016 |
1.0.64-pre | 903 | 3/12/2016 |
1.0.63-pre | 960 | 3/12/2016 |
1.0.62-pre | 1,059 | 3/12/2016 |
1.0.61-pre | 1,064 | 3/12/2016 |
1.0.60-pre | 941 | 3/11/2016 |
1.0.59-pre | 1,059 | 3/11/2016 |
1.0.58-pre | 937 | 3/11/2016 |
1.0.56-pre | 3,225 | 1/9/2016 |
1.0.55-pre | 1,831 | 1/7/2016 |
1.0.54-pre | 1,583 | 12/14/2015 |
1.0.53-pre | 1,075 | 12/10/2015 |
1.0.52-pre | 1,294 | 12/10/2015 |
1.0.51-pre | 1,063 | 12/10/2015 |
1.0.50-pre | 1,099 | 12/9/2015 |
1.0.49-pre | 2,787 | 10/5/2015 |
1.0.48-pre | 1,290 | 10/3/2015 |
1.0.47-pre | 1,135 | 9/2/2015 |
1.0.46-pre | 985 | 9/2/2015 |
1.0.45-pre | 1,041 | 9/1/2015 |
1.0.44-pre | 1,001 | 9/1/2015 |
1.0.43-pre | 994 | 9/1/2015 |
1.0.42-pre | 1,005 | 8/18/2015 |
1.0.41-pre | 1,324 | 8/7/2015 |
1.0.40-pre | 1,042 | 7/19/2015 |
1.0.39-pre | 994 | 7/10/2015 |
1.0.38-pre | 1,015 | 6/26/2015 |
1.0.37-pre | 961 | 6/26/2015 |
1.0.36-pre | 977 | 6/26/2015 |
1.0.35-pre | 994 | 6/26/2015 |
1.0.34-pre | 1,006 | 6/24/2015 |
1.0.33-pre | 1,063 | 6/17/2015 |
1.0.31-pre | 1,027 | 6/16/2015 |
1.0.30-pre | 988 | 6/16/2015 |
1.0.29-pre | 976 | 6/16/2015 |
1.0.28-pre | 987 | 6/16/2015 |
1.0.27-pre | 998 | 6/16/2015 |
1.0.26-pre | 1,026 | 6/15/2015 |
1.0.25-pre | 1,005 | 6/14/2015 |
1.0.24-pre | 1,041 | 6/11/2015 |
1.0.23-pre | 983 | 6/8/2015 |
1.0.22-pre | 990 | 6/8/2015 |
1.0.21-pre | 996 | 6/8/2015 |
1.0.20-pre | 1,023 | 6/8/2015 |
1.0.19-pre | 991 | 6/8/2015 |
1.0.18-pre | 998 | 6/8/2015 |
1.0.16-pre | 1,002 | 6/5/2015 |
1.0.15-pre | 1,028 | 6/5/2015 |
1.0.14-pre | 1,057 | 6/4/2015 |
1.0.11-pre | 962 | 6/3/2015 |
1.0.10-pre | 1,013 | 6/3/2015 |
1.0.9-pre | 1,018 | 6/3/2015 |
1.0.8-pre | 988 | 6/3/2015 |
1.0.7-pre | 1,052 | 6/3/2015 |
1.0.6-pre | 975 | 6/3/2015 |
1.0.5-pre | 966 | 6/3/2015 |
1.0.4-pre | 1,006 | 6/3/2015 |
1.0.3-pre | 986 | 6/3/2015 |
1.0.1-pre | 1,003 | 6/3/2015 |
1.0.0 | 1,458 | 2/22/2016 |
1.0.0-pre | 974 | 5/26/2015 |
0.0.196 | 626 | 10/14/2020 |
0.0.195 | 635 | 10/5/2020 |
0.0.194 | 12,647 | 9/24/2020 |