4 implementations of AllowMultipleValues
Microsoft.TemplateEngine.Edge (1)
Settings\TemplateInfoReader.cs (1)
527public bool AllowMultipleValues => _parameter.AllowMultipleValues;
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
Parameter.cs (1)
54public bool AllowMultipleValues { get; internal set; }
Microsoft.TemplateEngine.Utils (1)
TemplateParameter.cs (1)
74public bool AllowMultipleValues { get; init; }
Microsoft.TemplateSearch.Common (1)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
420public bool AllowMultipleValues { get; internal set; }
9 references to AllowMultipleValues
Microsoft.TemplateEngine.Cli (1)
CliTemplateParameter.cs (1)
58AllowMultipleValues = parameter.AllowMultipleValues;
Microsoft.TemplateEngine.Edge (6)
Generated\361d1da7f942c932\TemplateCacheJsonSerializerContext.ITemplateParameter.g.cs (2)
284Getter = static obj => ((global::Microsoft.TemplateEngine.Abstractions.ITemplateParameter)obj).AllowMultipleValues, 382writer.WriteBoolean(PropName_AllowMultipleValues, ((global::Microsoft.TemplateEngine.Abstractions.ITemplateParameter)value).AllowMultipleValues);
Settings\TemplateInfo.cs (1)
297allowMultipleValues: parameter.AllowMultipleValues,
Settings\TemplateInfoReader.cs (3)
278bool allowMultipleValues = jObject.ToBool(nameof(ITemplateParameter.AllowMultipleValues)); 352AllowMultipleValues = GetBoolValue(element, nameof(ITemplateParameter.AllowMultipleValues)), 527public bool AllowMultipleValues => _parameter.AllowMultipleValues;
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ParameterConverter.cs (1)
27if (parameter.AllowMultipleValues)
Microsoft.TemplateSearch.Common (1)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
339AllowMultipleValues = parameter.AllowMultipleValues;