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)
67
Log?.LogMessage($"SDK feature band: {
_sdkFeatureBand
}");
128
var globalJsonWorkloadSetVersions = GetGlobalJsonWorkloadSetVersions(
_sdkFeatureBand
);
130
var garbageCollector = new WorkloadGarbageCollector(DotNetHome,
_sdkFeatureBand
, RecordRepository.GetInstalledWorkloads(
_sdkFeatureBand
),
148
else if (dependentFeatureBand.Equals(
_sdkFeatureBand
))
161
return (true, $"the workload set may still be needed for SDK feature band {dependentFeatureBand}, which is different than the current SDK feature band of {
_sdkFeatureBand
}");
197
else if (dependentFeatureBand.Equals(
_sdkFeatureBand
))
210
return (true, $"the manifest may still be needed for SDK feature band {dependentFeatureBand}, which is different than the current SDK feature band of {
_sdkFeatureBand
}");
257
else if (dependentFeatureBand.Equals(
_sdkFeatureBand
))
268
return (true, $"the packs are still needed. Mode: {cleanAllPacks} | Dependent band: {dependentFeatureBand} | SDK band: {
_sdkFeatureBand
}.");
271
return (true, $"no conditions for removal were met. Mode: {cleanAllPacks} | Dependent band: {dependentFeatureBand} | SDK band: {
_sdkFeatureBand
}.");
345
return WorkloadSet.FromWorkloadSetFolder(installationFolder, workloadSetVersion,
_sdkFeatureBand
);
661
Log?.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
}.");
662
RecordRepository.WriteWorkloadInstallationRecord(workload,
_sdkFeatureBand
);