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