6 instantiations of CacheTag
Microsoft.TemplateEngine.Edge (2)
Settings\TemplateInfo.cs (2)
173
tags[tag.Key] = new
CacheTag
(null, null, new Dictionary<string, ParameterChoice> { { tag.Value, new ParameterChoice(null, null) } }, tag.Value);
178
tags[parameter.Name] = new
CacheTag
(parameter.DisplayName, parameter.Documentation, choices, parameter.DefaultValue);
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (4)
RunnableProjectConfig.ITemplate.cs (2)
94
tags[tag.Key] = new
CacheTag
(null, null, new Dictionary<string, ParameterChoice> { { tag.Value, new ParameterChoice(null, null) } }, tag.Value);
99
tags[parameter.Name] = new
CacheTag
(parameter.DisplayName, parameter.Description, choices, parameter.DefaultValue);
RunnableProjectGenerator.cs (2)
510
tags[tag.Key] = new
CacheTag
(null, null, new Dictionary<string, ParameterChoice> { { tag.Value, new ParameterChoice(null, null) } }, tag.Value);
515
tags[parameter.Name] = new
CacheTag
(parameter.DisplayName, parameter.Description, choices, parameter.DefaultValue);