9 references to InteractiveRestoreOption
dotnet (6)
Commands\Tool\Install\ToolInstallCommandParser.cs (1)
122command.Options.Add(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption);
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (1)
94Interactive: parseResult.GetValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption));
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
65Interactive: parseResult.GetValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption));
Commands\Tool\Restore\ToolRestoreCommand.cs (2)
67if (!result.HasOption(ToolRestoreCommandParser.VerbosityOption) && result.GetValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption)) 75Interactive: result.GetValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption));
Commands\Tool\Restore\ToolRestoreCommandParser.cs (1)
41command.Options.Add(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption);
dotnet.Tests (3)
CommandTests\Tool\Install\InstallToolParserTests.cs (1)
161result.GetRequiredValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption).Should().BeTrue();
CommandTests\Tool\Restore\ToolRestoreParserTests.cs (1)
117result.GetRequiredValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption).Should().BeTrue();
CommandTests\Tool\Update\UpdateToolParserTests.cs (1)
153result.GetValue(ToolCommandRestorePassThroughOptions.InteractiveRestoreOption).Should().Be(true);