2 writes to Options
aspire (1)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (1)
30
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.PublishingPromptInput(){ Label = (string)args[0], InputType = (string)args[1], Required = (bool)args[2],
Options
= (global::System.Collections.Generic.IReadOnlyList<global::System.Collections.Generic.KeyValuePair<string, string>>)args[3], Value = (string)args[4], ValidationErrors = (global::System.Collections.Generic.IReadOnlyList<string>)args[5], AllowCustomChoice = (bool)args[6] },
Aspire.Cli.Tests (1)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
803
Options
= input.Options,
5 references to Options
aspire (5)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
114
Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).
Options
,
202
IReadOnlyListKeyValuePairStringStringSerializeHandler(writer, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).
Options
);
Commands\PublishCommandBase.cs (3)
606
if (input.
Options
is null || input.
Options
.Count == 0)
614
var options = input.
Options
.ToList();