2 writes to InputType
aspire (1)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (1)
30ObjectWithParameterizedConstructorCreator = 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)
801InputType = input.InputType,
3 references to InputType
aspire (3)
BackchannelJsonSerializerContext.PublishingPromptInput.g.cs (2)
75Getter = static obj => ((global::Aspire.Cli.Backchannel.PublishingPromptInput)obj).InputType, 199writer.WriteString(PropName_InputType, ((global::Aspire.Cli.Backchannel.PublishingPromptInput)value).InputType);
Commands\PublishCommandBase.cs (1)
564if (!Enum.TryParse<InputType>(input.InputType, ignoreCase: true, out var inputType))