2 writes to ValidationErrors
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)
806
ValidationErrors
= input.ValidationErrors
5 references to ValidationErrors
aspire (5)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
184
Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).
ValidationErrors
,
300
IReadOnlyListStringSerializeHandler(writer, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).
ValidationErrors
);
Commands\PipelineCommandBase.cs (3)
686
var hasValidationErrors = inputs.Any(input => input.
ValidationErrors
is { Count: > 0 });
706
if (!hasValidationErrors || input.
ValidationErrors
is { Count: > 0 })
737
if (input.
ValidationErrors
is { Count: > 0 } errors)