3 implementations of IsMatch
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (3)
FileSourceStateMatcher.cs (1)
22
public bool
IsMatch
(string path)
GlobbingPatternMatcher.cs (1)
21
public bool
IsMatch
(string path)
ListGlobbingPatternMatcher.cs (1)
48
public bool
IsMatch
(string path)
10 references to IsMatch
Microsoft.TemplateEngine.Core (6)
Util\Orchestrator.cs (6)
134
if (include.
IsMatch
(sourceRel))
139
if (exclude.
IsMatch
(sourceRel))
205
if (include.
IsMatch
(sourceRel))
210
if (exclude.
IsMatch
(sourceRel))
222
if (copyOnly.
IsMatch
(sourceRel))
255
IProcessor runner = (fileGlobProcessors.FirstOrDefault(x => x.Key.
IsMatch
(sourceRel)).Value ?? fallback)
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (4)
FileSourceHierarchicalPathMatcher.cs (3)
115
if (_exclude.Any(x => x.
IsMatch
(path)))
120
bool include = _include.Any(x => x.
IsMatch
(path));
122
if (_copyOnly.Any(x => x.
IsMatch
(path)))
ListGlobbingPatternMatcher.cs (1)
52
if (matcher.
IsMatch
(path))