4 implementations of IsMatch
Microsoft.Build (4)
Globbing\CompositeGlob.cs (2)
59
public bool
IsMatch
(string stringToMatch)
147
public bool
IsMatch
(string stringToMatch) => false;
Globbing\MSBuildGlob.cs (1)
93
public bool
IsMatch
(string stringToMatch)
Globbing\MSBuildGlobWithGaps.cs (1)
72
public bool
IsMatch
(string stringToMatch)
4 references to IsMatch
Microsoft.Build (4)
BackEnd\Shared\BuildRequestConfiguration.cs (1)
872
return s => glob.
IsMatch
(s);
Globbing\CompositeGlob.cs (1)
64
return _globs.Any(static (glob, str) => glob.
IsMatch
(str), stringToMatch);
Globbing\MSBuildGlobWithGaps.cs (2)
74
return MainGlob.
IsMatch
(stringToMatch) && !Gaps.
IsMatch
(stringToMatch);