We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f2019 commit 3083f16Copy full SHA for 3083f16
src/GitVersion.Core/VersionCalculation/TrunkBasedVersionCalculator.cs
@@ -3,5 +3,6 @@ namespace GitVersion.VersionCalculation;
3
internal sealed class TrunkBasedVersionCalculator : ITrunkBasedVersionCalculator
4
{
5
// TODO: Please implement trunk based version here and remove MainlineVersionCalculator.
6
- public SemanticVersion Calculate(NextVersion nextVersion) => throw new NotImplementedException();
+ public SemanticVersion Calculate(NextVersion nextVersion) =>
7
+ throw new NotImplementedException("Trunk based version calculation is not yet implemented. Use Mainline mode instead.");
8
}
0 commit comments