Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f027ed9

Browse files
committedMay 12, 2025·
Fix build
1 parent fd7ce08 commit f027ed9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/StructuredLogger/Analyzers/TargetGraph.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ private static string[] Expand(string expression, Dictionary<string, string> pro
311311
}
312312

313313
return
314-
expression.Split([';'], StringSplitOptions.RemoveEmptyEntries)
314+
TextUtilities.SplitSemicolonDelimitedList(expression)
315315
.Select(s => s.Trim('\r', '\n', ' ', '\t'))
316316
.Where(s => !string.IsNullOrWhiteSpace(s))
317317
.ToArray();

0 commit comments

Comments
 (0)
Please sign in to comment.