17 instantiations of RestoreActionConfig
dotnet (8)
Commands\Tool\Execute\ToolExecuteCommand.cs (1)
35
private readonly RestoreActionConfig _restoreActionConfig = new
RestoreActionConfig
(DisableParallel: result.GetValue(ToolCommandRestorePassThroughOptions.DisableParallelOption),
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (1)
91
_restoreActionConfig = new
RestoreActionConfig
(DisableParallel: parseResult.GetValue(ToolCommandRestorePassThroughOptions.DisableParallelOption),
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
62
restoreActionConfig = new
RestoreActionConfig
(DisableParallel: parseResult.GetValue(ToolCommandRestorePassThroughOptions.DisableParallelOption),
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
72
_restoreActionConfig = new
RestoreActionConfig
(DisableParallel: result.GetValue(ToolCommandRestorePassThroughOptions.DisableParallelOption),
Commands\Workload\Search\WorkloadSearchVersionsCommand.cs (1)
77
restoreActionConfig: new
RestoreActionConfig
(interactive),
Commands\Workload\WorkloadCommandNuGetRestoreActionConfigOptions.cs (1)
72
return new
RestoreActionConfig
(DisableParallel: parseResult.GetValue(DisableParallelOption),
Commands\Workload\WorkloadInfoHelper.cs (1)
53
var restoreConfig = new
RestoreActionConfig
(Interactive: isInteractive);
NugetPackageDownloader\NuGetPackageDownloader.cs (1)
72
_restoreActionConfig = restoreActionConfig ?? new
RestoreActionConfig
();
Microsoft.DotNet.PackageInstall.Tests (9)
NuGetPackageInstallerExtractTests.cs (3)
27
new MockFirstPartyNuGetPackageSigningVerifier(), logger, restoreActionConfig: new
RestoreActionConfig
(NoCache: true));
48
new MockFirstPartyNuGetPackageSigningVerifier(), logger, restoreActionConfig: new
RestoreActionConfig
(NoCache: true));
70
new MockFirstPartyNuGetPackageSigningVerifier(), logger, restoreActionConfig: new
RestoreActionConfig
(NoCache: true));
NuGetPackageInstallerTests.cs (6)
40
restoreActionConfig: new
RestoreActionConfig
(NoCache: true), timer: () => ExponentialRetry.Timer(ExponentialRetry.TestingIntervals));
43
restoreActionConfig: new
RestoreActionConfig
(NoCache: true), timer: () => ExponentialRetry.Timer(ExponentialRetry.TestingIntervals), shouldUsePackageSourceMapping: true);
80
_logger, restoreActionConfig: new
RestoreActionConfig
(IgnoreFailedSources: true, NoCache: true));
237
_logger, bufferedReporter, restoreActionConfig: new
RestoreActionConfig
(NoCache: true));
261
_logger, bufferedReporter, restoreActionConfig: new
RestoreActionConfig
(NoCache: true), verbosityOptions: VerbosityOptions.quiet);
295
_logger, restoreActionConfig: new
RestoreActionConfig
(NoCache: true));
26 references to RestoreActionConfig
dotnet (23)
Commands\Tool\Execute\ToolExecuteCommand.cs (1)
35
private readonly
RestoreActionConfig
_restoreActionConfig = new RestoreActionConfig(DisableParallel: result.GetValue(ToolCommandRestorePassThroughOptions.DisableParallelOption),
Commands\Tool\Install\ToolInstallGlobalOrToolPathCommand.cs (1)
52
internal readonly
RestoreActionConfig
_restoreActionConfig;
Commands\Tool\Install\ToolInstallLocalCommand.cs (1)
34
internal
RestoreActionConfig
restoreActionConfig;
Commands\Tool\Install\ToolInstallLocalInstaller.cs (2)
25
private readonly
RestoreActionConfig
_restoreActionConfig;
31
RestoreActionConfig
restoreActionConfig = null)
Commands\Tool\Restore\ToolPackageRestorer.cs (2)
21
private readonly
RestoreActionConfig
_restoreActionConfig;
32
RestoreActionConfig
restoreActionConfig,
Commands\Tool\Restore\ToolRestoreCommand.cs (1)
30
private readonly
RestoreActionConfig
_restoreActionConfig;
Commands\Workload\Install\FileBasedInstaller.cs (2)
41
private readonly
RestoreActionConfig
_restoreActionConfig;
54
RestoreActionConfig
restoreActionConfig = null,
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (1)
1118
RestoreActionConfig
restoreActionConfig = null,
Commands\Workload\Install\WorkloadInstallerFactory.cs (1)
26
RestoreActionConfig
restoreActionConfig = null,
Commands\Workload\WorkloadCommandBase.cs (1)
38
protected
RestoreActionConfig
RestoreActionConfiguration
Commands\Workload\WorkloadCommandNuGetRestoreActionConfigOptions.cs (1)
70
public static
RestoreActionConfig
ToRestoreActionConfig(this ParseResult parseResult)
Commands\Workload\WorkloadInfoHelper.cs (1)
53
var
restoreConfig = new RestoreActionConfig(Interactive: isInteractive);
NugetPackageDownloader\NuGetPackageDownloader.cs (2)
32
private readonly
RestoreActionConfig
_restoreActionConfig;
58
RestoreActionConfig
restoreActionConfig = null,
ToolPackage\IToolPackageDownloader.cs (2)
22
RestoreActionConfig
? restoreActionConfig = null
30
RestoreActionConfig
? restoreActionConfig = null
ToolPackage\ToolPackageDownloader.cs (1)
36
RestoreActionConfig
? restoreActionConfig)
ToolPackage\ToolPackageDownloaderBase.cs (3)
63
RestoreActionConfig
? restoreActionConfig);
100
RestoreActionConfig
? restoreActionConfig = null)
402
RestoreActionConfig
? restoreActionConfig = null)
Microsoft.DotNet.Tools.Tests.ComponentMocks (3)
ToolPackageDownloaderMock.cs (2)
104
RestoreActionConfig
? restoreActionConfig = null
317
RestoreActionConfig
? restoreActionConfig = null)
ToolPackageDownloaderMock2.cs (1)
96
protected override INuGetPackageDownloader CreateNuGetPackageDownloader(bool verifySignatures, Cli.Utils.VerbosityOptions verbosity,
RestoreActionConfig
? restoreActionConfig)