3 implementations of AllowMultipleValues
Microsoft.TemplateEngine.Edge (1)
Settings\TemplateInfoReader.cs (1)
239public bool AllowMultipleValues => _parameter.AllowMultipleValues;
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; }
7 references to AllowMultipleValues
Microsoft.TemplateEngine.Cli (1)
CliTemplateParameter.cs (1)
58AllowMultipleValues = parameter.AllowMultipleValues;
Microsoft.TemplateEngine.Edge (5)
_generated\23\TemplateCacheJsonSerializerContext.ITemplateParameter.g.cs (2)
282Getter = static obj => ((global::Microsoft.TemplateEngine.Abstractions.ITemplateParameter)obj).AllowMultipleValues, 380writer.WriteBoolean(PropName_AllowMultipleValues, ((global::Microsoft.TemplateEngine.Abstractions.ITemplateParameter)value).AllowMultipleValues);
Settings\TemplateInfo.cs (1)
291allowMultipleValues: parameter.AllowMultipleValues,
Settings\TemplateInfoReader.cs (2)
159bool allowMultipleValues = jObject.ToBool(nameof(ITemplateParameter.AllowMultipleValues)); 239public bool AllowMultipleValues => _parameter.AllowMultipleValues;
Microsoft.TemplateSearch.Common (1)
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
339AllowMultipleValues = parameter.AllowMultipleValues;