2 writes to AllowMultipleValues
Microsoft.TemplateEngine.Cli (2)
CliTemplateParameter.cs (2)
58AllowMultipleValues = parameter.AllowMultipleValues; 108AllowMultipleValues = other.AllowMultipleValues;
6 references to AllowMultipleValues
Microsoft.TemplateEngine.Cli (6)
ChoiceTemplateParameter.cs (3)
78Arity = new ArgumentArity(DefaultIfOptionWithoutValue == null ? 1 : 0, AllowMultipleValues ? _choices.Count : 1), 79AllowMultipleArgumentsPerToken = AllowMultipleValues 145else if (!parameter.AllowMultipleValues && argumentResult.Tokens.Count != 1)
CliTemplateParameter.cs (3)
108AllowMultipleValues = other.AllowMultipleValues; 492if (AllowMultipleValues) 494displayValue.AppendLine(string.Format(HelpStrings.RowHeader_AllowMultiValue, AllowMultipleValues));