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