2 writes to Label
aspire (1)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Backchannel.PublishingPromptInput(){ Name = (string)args[0],
Label
= (string)args[1], InputType = (string)args[2], Required = (bool)args[3], Options = (global::System.Collections.Generic.IReadOnlyList<global::System.Collections.Generic.KeyValuePair<string, string>>)args[4], Value = (string)args[5], ValidationErrors = (global::System.Collections.Generic.IReadOnlyList<string>)args[6], AllowCustomChoice = (bool)args[7], UpdateStateOnChange = (bool)args[8], Loading = (bool)args[9], Disabled = (bool)args[10] },
Aspire.Cli.Tests (1)
Commands\PublishCommandPromptingIntegrationTests.cs (1)
801
Label
= input.Label,
4 references to Label
aspire (4)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
78
Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).
Label
,
293
writer.WriteString(PropName_Label, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).
Label
);
Commands\PipelineCommandBase.cs (2)
651
var labelText = ConvertTextWithMarkdownFlag($"{input.
Label
}: ", activityData);
657
var label = input.
Label
?? string.Empty;