14 references to GlobSegmentPartKind
Microsoft.NET.Sdk.StaticWebAssets.Tasks (14)
Utils\Globbing\GlobNode.cs (4)
96public GlobSegmentPartKind Kind { get; set; } 103GlobSegmentPartKind.Literal => Value.ToString(), 104GlobSegmentPartKind.WildCard => "*", 105GlobSegmentPartKind.QuestionMark => "?",
Utils\Globbing\StaticWebAssetGlobMatcher.cs (6)
196case GlobSegmentPartKind.Literal: 204case GlobSegmentPartKind.QuestionMark: 207case GlobSegmentPartKind.WildCard: 223case GlobSegmentPartKind.Literal: 251case GlobSegmentPartKind.QuestionMark: 254case GlobSegmentPartKind.WildCard:
Utils\Globbing\StaticWebAssetGlobMatcherBuilder.cs (4)
145Kind = GlobSegmentPartKind.Literal, 152Kind = segmentSpan[variableIndex] == '*' ? GlobSegmentPartKind.WildCard : GlobSegmentPartKind.QuestionMark, 165Kind = GlobSegmentPartKind.Literal,