Skip to content

Commit fb875d0

Browse files
committed
Fixed build issue
1 parent 074c38d commit fb875d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitVersionCore/GitVersionContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ void CalculateEffectiveConfiguration()
9494

9595
KeyValuePair<string, BranchConfig> GetBranchConfiguration(Branch currentBranch)
9696
{
97-
KeyValuePair<string, BranchConfig>[] matchingBranches = configuration.Branches.Where(b => Regex.IsMatch("^" + currentBranch.Name, b.Key)).ToArray();
97+
var matchingBranches = configuration.Branches.Where(b => Regex.IsMatch("^" + currentBranch.Name, b.Key)).ToArray();
9898

9999
if (matchingBranches.Length == 0)
100100
{

0 commit comments

Comments
 (0)