13 references to InteractiveOption
dotnet (13)
Commands\NuGet\NuGetCommandParser.cs (2)
68deleteCommand.Options.Add(CommonOptions.InteractiveOption()); 129pushCommand.Options.Add(CommonOptions.InteractiveOption());
Commands\Package\Add\PackageAddCommandParser.cs (1)
75public static readonly Option<bool> InteractiveOption = CommonOptions.InteractiveOption().ForwardIfEnabled("--interactive");
Commands\Package\List\PackageListCommandParser.cs (1)
75public static readonly Option InteractiveOption = CommonOptions.InteractiveOption().ForwardIfEnabled("--interactive");
Commands\Package\Remove\PackageRemoveCommandParser.cs (1)
17public static readonly Option<bool> InteractiveOption = CommonOptions.InteractiveOption().ForwardIfEnabled("--interactive");
Commands\Package\Search\PackageSearchCommandParser.cs (1)
45public static readonly Option<bool> Interactive = CommonOptions.InteractiveOption().ForwardIfEnabled("--interactive");
Commands\Project\Convert\ProjectConvertCommandParser.cs (1)
36CommonOptions.InteractiveOption(),
Commands\Reference\Add\ReferenceAddCommandParser.cs (1)
31public static readonly Option<bool> InteractiveOption = CommonOptions.InteractiveOption();
Commands\Tool\Execute\ToolExecuteCommandParser.cs (1)
25public static readonly Option<bool> InteractiveOption = CommonOptions.InteractiveOption();
Commands\Tool\ToolCommandRestorePassThroughOptions.cs (1)
38public static Option<bool> InteractiveRestoreOption = CommonOptions.InteractiveOption();
Commands\Workload\WorkloadCommandNuGetRestoreActionConfigOptions.cs (1)
39public static Option<bool> InteractiveRestoreOption = CommonOptions.InteractiveOption();
CommonOptions.cs (1)
285public static Option<bool> InteractiveMsBuildForwardOption = InteractiveOption(acceptArgument: true).ForwardAsSingle(b => $"--property:NuGetInteractive={(b ? "true" : "false")}");
Parser.cs (1)
168NuGet.CommandLine.XPlat.NuGetCommands.Add(rootCommand, CommonOptions.InteractiveOption(acceptArgument: true));