1 write to Value
Microsoft.TemplateEngine.Abstractions (1)
TemplateFiltering\MatchInfo.cs (1)
24
Value
= value;
8 references to Value
Microsoft.TemplateEngine.Cli (8)
TemplateResolution\TemplateGroupMatchInfo.cs (5)
321
if ((languageMatch == null) || string.IsNullOrWhiteSpace(languageMatch.
Value
))
328
matchInfo => matchInfo.Info.GetLanguage()?.Equals(languageMatch.
Value
, StringComparison.OrdinalIgnoreCase) ?? false);
352
&& string.Equals(x.
Value
, y.
Value
, StringComparison.OrdinalIgnoreCase);
357
return (obj.Name.ToLowerInvariant(), obj.
Value
?.ToLowerInvariant(), obj.Kind).GetHashCode();
TemplateResolution\TemplateMatchInfoExtensions.cs (1)
17
.ToDictionary(x => x.Name, x => x.
Value
);
TemplateResolution\TemplateResolutionResult.cs (2)
270
if (!string.IsNullOrWhiteSpace(parameterMatchInfo.
Value
) || !parameterList.ContainsKey(parameterMatchInfo.InputFormat ?? parameterMatchInfo.Name))
272
parameterList[parameterMatchInfo.InputFormat ?? parameterMatchInfo.Name] = parameterMatchInfo.
Value
;