1 implementation of IsMatch
Microsoft.TemplateEngine.Edge (1)
Settings\TemplateMatchInfo.cs (1)
46
public bool
IsMatch
=> MatchDisposition.Count > 0 && MatchDisposition.All(x => x.Kind != MatchKind.Mismatch);
1 reference to IsMatch
Microsoft.TemplateEngine.Edge (1)
TemplateListFilter.cs (1)
17
public static Func<ITemplateMatchInfo, bool> ExactMatchFilter => x => x.
IsMatch
;