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)
223case GlobSegmentPartKind.Literal: 231case GlobSegmentPartKind.QuestionMark: 234case GlobSegmentPartKind.WildCard: 250case GlobSegmentPartKind.Literal: 278case GlobSegmentPartKind.QuestionMark: 281case GlobSegmentPartKind.WildCard:
Utils\Globbing\StaticWebAssetGlobMatcherBuilder.cs (4)
145Kind = GlobSegmentPartKind.Literal, 152Kind = segmentSpan[variableIndex] == '*' ? GlobSegmentPartKind.WildCard : GlobSegmentPartKind.QuestionMark, 165Kind = GlobSegmentPartKind.Literal,