1 write to _sdkFeatureBand
dotnet (1)
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (1)
53_sdkFeatureBand = sdkFeatureBand;
14 references to _sdkFeatureBand
dotnet (14)
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (14)
67Log?.LogMessage($"SDK feature band: {_sdkFeatureBand}"); 128var globalJsonWorkloadSetVersions = GetGlobalJsonWorkloadSetVersions(_sdkFeatureBand); 130var garbageCollector = new WorkloadGarbageCollector(DotNetHome, _sdkFeatureBand, RecordRepository.GetInstalledWorkloads(_sdkFeatureBand), 148else if (dependentFeatureBand.Equals(_sdkFeatureBand)) 161return (true, $"the workload set may still be needed for SDK feature band {dependentFeatureBand}, which is different than the current SDK feature band of {_sdkFeatureBand}"); 197else if (dependentFeatureBand.Equals(_sdkFeatureBand)) 210return (true, $"the manifest may still be needed for SDK feature band {dependentFeatureBand}, which is different than the current SDK feature band of {_sdkFeatureBand}"); 257else if (dependentFeatureBand.Equals(_sdkFeatureBand)) 268return (true, $"the packs are still needed. Mode: {cleanAllPacks} | Dependent band: {dependentFeatureBand} | SDK band: {_sdkFeatureBand}."); 271return (true, $"no conditions for removal were met. Mode: {cleanAllPacks} | Dependent band: {dependentFeatureBand} | SDK band: {_sdkFeatureBand}."); 345return WorkloadSet.FromWorkloadSetFolder(installationFolder, workloadSetVersion, _sdkFeatureBand); 661Log?.LogMessage($"The workload with id: {workload} was detected as being from VS only and having no SDK records. Creating one now under feature band {_sdkFeatureBand}."); 662RecordRepository.WriteWorkloadInstallationRecord(workload, _sdkFeatureBand);