1 write to _templateMatchInfos
Microsoft.TemplateEngine.Cli (1)
TemplateResolution\TemplateGroupMatchInfo.cs (1)
36
_templateMatchInfos
= templateDispositions.ToList();
7 references to _templateMatchInfos
Microsoft.TemplateEngine.Cli (7)
TemplateResolution\TemplateGroupMatchInfo.cs (7)
87
return
_templateMatchInfos
;
106
return
_templateMatchInfos
.Where(template => TemplateInfoMatch(template));
129
return
_templateMatchInfos
.Where(template => TemplateInfoMatch(template) && TemplateParametersMatch(template));
152
return FilterTemplatesByPreferredLanguage(
_templateMatchInfos
.Where(template => TemplateInfoMatch(template) && TemplateParametersMatch(template)));
175
private bool IsGroupTemplateInfoMatch => _isTemplateMatchEvaluated &&
_templateMatchInfos
.Any(template => TemplateInfoMatch(template));
177
private bool IsGroupTemplateParametersMatch => _isTemplateParameterMatchEvaluated &&
_templateMatchInfos
.Any(template => TemplateParametersMatch(template));
267
foreach (ITemplateMatchInfo template in
_templateMatchInfos
)