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)
151
if (include.
IsMatch
(sourceRel))
156
if (exclude.
IsMatch
(sourceRel))
222
if (include.
IsMatch
(sourceRel))
227
if (exclude.
IsMatch
(sourceRel))
239
if (copyOnly.
IsMatch
(sourceRel))
272
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))