1 write to _matchInformation
Microsoft.TemplateEngine.Cli (1)
TemplateResolution\TemplateResolutionResult.cs (1)
31
_matchInformation
= matchInformation.ToList();
8 references to _matchInformation
Microsoft.TemplateEngine.Cli (8)
TemplateResolution\TemplateResolutionResult.cs (8)
32
_matchedTemplateGroups =
_matchInformation
.Where(groupMatchInfo => groupMatchInfo.IsGroupMatch).ToList();
141
return
_matchInformation
.Where(groupMatchInfo => groupMatchInfo.IsGroupMatch).Select(groupMatchInfo => groupMatchInfo.GroupInfo);
152
return
_matchInformation
.Where(groupMatchInfo => groupMatchInfo.IsGroupAndTemplateInfoMatch).Select(groupMatchInfo => groupMatchInfo.GroupInfo);
163
return
_matchInformation
.Where(groupMatchInfo => groupMatchInfo.IsGroupAndTemplateInfoAndParametersMatch).Select(groupMatchInfo => groupMatchInfo.GroupInfo);
281
_matchInformation
354
if (!
_matchInformation
.Any(groupMatchInfo => groupMatchInfo.IsGroupMatch && groupMatchInfo.IsGroupAndTemplateInfoMatch))
359
if (
_matchInformation
.Count(groupMatchInfo => groupMatchInfo.IsGroupMatch && groupMatchInfo.IsGroupAndTemplateInfoMatch) == 1)
361
_unambiguousTemplateGroup =
_matchInformation
.Single(groupMatchInfo => groupMatchInfo.IsGroupMatch && groupMatchInfo.IsGroupAndTemplateInfoMatch);