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.
1 parent ccb8e63 commit baf4bd2Copy full SHA for baf4bd2
src/GitVersionCore/VersionCalculation/BaseVersionCalculator.cs
@@ -30,11 +30,13 @@ public BaseVersion GetBaseVersion()
30
var baseVersions = strategies
31
.SelectMany(s =>
32
{
33
+ if (s is FallbackVersionStrategy)
34
+ return s.GetVersions();
35
+
36
return s.GetVersions()
37
.Where(v =>
38
39
if (v == null) return false;
- if (s is FallbackVersionStrategy) return true;
40
41
log.Info(v.ToString());
42
0 commit comments