5 instantiations of WorkloadInfoHelper
dotnet (5)
Commands\New\NewCommandParser.cs (1)
122new Lazy<IWorkloadsRepositoryEnumerator>(() => new WorkloadInfoHelper(isInteractive))))
Commands\Workload\List\WorkloadListCommand.cs (1)
44_workloadListHelper = new WorkloadInfoHelper(
Commands\Workload\WorkloadCommandParser.cs (1)
60new WorkloadInfoHelper(isInteractive: false).ShowWorkloadsInfo();
Commands\Workload\WorkloadInfoHelper.cs (1)
152workloadInfoHelper ??= new WorkloadInfoHelper(false);
ParserOptionActions.cs (1)
175new WorkloadInfoHelper(isInteractive: false).ShowWorkloadsInfo(showVersion: false);
5 references to WorkloadInfoHelper
dotnet (5)
Commands\Workload\FileBasedWorkloadInstallationRecordRepositoryFactory.cs (1)
15/// <see cref="WorkloadInfoHelper"/>, and the lightweight background advertising-manifest updater,
Commands\Workload\List\WorkloadListCommand.cs (1)
26private readonly WorkloadInfoHelper _workloadListHelper;
Commands\Workload\WorkloadCommandParser.cs (1)
72Reporter.Output.WriteLine(WorkloadInfoHelper.GetWorkloadsVersion());
Commands\Workload\WorkloadInfoHelper.cs (1)
150internal static string GetWorkloadsVersion(WorkloadInfoHelper? workloadInfoHelper = null)
ParserOptionActions.cs (1)
152Reporter.Output.WriteLine($" Workload version: {WorkloadInfoHelper.GetWorkloadsVersion()}");