We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bda738d + b2a832d commit 7201c7eCopy full SHA for 7201c7e
src/GitVersionCore/GitVersionFinder.cs
@@ -12,6 +12,11 @@ public SemanticVersion FindVersion(GitVersionContext context)
12
"Running against branch: {0} ({1})",
13
context.CurrentBranch.FriendlyName,
14
context.CurrentCommit == null ? "-" : context.CurrentCommit.Sha));
15
+ if (context.IsCurrentCommitTagged)
16
+ {
17
+ Logger.WriteInfo($"Current commit is tagged with version {context.CurrentCommitTaggedVersion}, " +
18
+ "version calcuation is for metadata only.");
19
+ }
20
EnsureMainTopologyConstraints(context);
21
22
var filePath = Path.Combine(context.Repository.GetRepositoryDirectory(), "NextVersion.txt");
0 commit comments