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)
87return _templateMatchInfos; 106return _templateMatchInfos.Where(template => TemplateInfoMatch(template)); 129return _templateMatchInfos.Where(template => TemplateInfoMatch(template) && TemplateParametersMatch(template)); 152return FilterTemplatesByPreferredLanguage(_templateMatchInfos.Where(template => TemplateInfoMatch(template) && TemplateParametersMatch(template))); 175private bool IsGroupTemplateInfoMatch => _isTemplateMatchEvaluated && _templateMatchInfos.Any(template => TemplateInfoMatch(template)); 177private bool IsGroupTemplateParametersMatch => _isTemplateParameterMatchEvaluated && _templateMatchInfos.Any(template => TemplateParametersMatch(template)); 267foreach (ITemplateMatchInfo template in _templateMatchInfos)