2 writes to Value
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)
804
Value
= input.Value,
10 references to Value
aspire (10)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
133
Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).
Value
,
203
writer.WriteString(PropName_Value, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).
Value
);
Commands\PublishCommandBase.cs (8)
549
result = input.
Value
;
583
defaultValue: input.
Value
,
589
defaultValue: input.
Value
,
596
InputType.Boolean => (await InteractionService.ConfirmAsync(promptText, defaultValue: ParseBooleanValue(input.
Value
), cancellationToken: cancellationToken)).ToString().ToLowerInvariant(),
600
_ => await InteractionService.PromptForStringAsync(promptText, defaultValue: input.
Value
, required: input.Required, cancellationToken: cancellationToken)
608
return await InteractionService.PromptForStringAsync(promptText, defaultValue: input.
Value
, required: input.Required, cancellationToken: cancellationToken);
630
return await InteractionService.PromptForStringAsync(promptText, defaultValue: input.
Value
, required: input.Required, cancellationToken: cancellationToken);
652
defaultValue: input.
Value
,