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