Hardy Hobeck

Results 163 comments of Hardy Hobeck

Actually the `BranchConfigurationCalculator` class has not been survived on main. Please try your scenario with the [6.0.0-beta.1](https://github.com/GitTools/GitVersion/releases/tag/6.0.0-beta.1) preview release version and re-open this ticket if the problem persists. Thank you...

I have executed the following integration test succesfully on the current main branch: ```csharp [Test] public void JustATestFor2870() { var configuration = GitFlowConfigurationBuilder.New .WithBranch("main", _ => _.WithIncrement(IncrementStrategy.Minor)) .Build(); using var...

Please tak a look to the following integration test which I have been executed on current main branch: ```csharp [Test] public void JustATestFor2888() { var configuration = GitFlowConfigurationBuilder.New .WithVersioningMode(VersioningMode.Mainline) .WithBranch("develop",...

This issue has been fixed with https://github.com/GitTools/GitVersion/issues/3438

@DocZoid Could you please take a look to the following bugs: https://github.com/GitTools/GitVersion/issues/3438 and https://github.com/GitTools/GitVersion/issues/3436.

An integration test in #3441 gives the follwoting result: ```csharp [Test] public void __Just_A_Test__() { var configuration = GitFlowConfigurationBuilder.New .WithBranch("develop", builder => builder.WithLabel("snapshot")) .WithBranch("release", builder => builder.WithLabel("rc")) .Build(); using var...

I can tell you it is really hard to get into such issues and answer the question: Has it already been solved or not with the actual refactoring initiative!? Please...

I have tried to reproduce this issue with the `6.0.0-beta.7` version of gitversion and don't see any different behavior when using the `-diag` parameter. I'm getting in both cases `1.1.0-alpha.1`...

```csharp public class XenoLibPackages : TestBase { private readonly GitVersionConfiguration configuration = GitFlowConfigurationBuilder.New .WithVersioningMode(VersioningMode.Mainline) .WithBranch("feature", _ => _ .WithIncrement(IncrementStrategy.Minor) .WithVersioningMode(VersioningMode.ContinuousDeployment) ).WithBranch("pull-request", _ => _ .WithIncrement(IncrementStrategy.Inherit) ).Build(); [Test] public void IncrementFeatureByMinor()...

> And this is the reason why the bugfix has been implemented and you want to separate the SemVerSource from CommitCountSource? Means in this example the SemVerSource is 5 and...