2 writes to Label
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)
800
Label
= input.Label,
4 references to Label
aspire (4)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
55
Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).
Label
,
198
writer.WriteString(PropName_Label, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).
Label
);
Commands\PublishCommandBase.cs (2)
485
var labelText = MarkdownToSpectreConverter.ConvertToSpectre($"{input.
Label
}: ");
491
var label = input.
Label
?? string.Empty;