1 write to SdkFeatureBand
Microsoft.DotNet.Build.Tasks.Workloads (1)
WorkloadSetPackage.wix.cs (1)
57SdkFeatureBand = GetSdkFeatureBandVersion(GetSdkVersion(Id));
7 references to SdkFeatureBand
Microsoft.DotNet.Build.Tasks.Workloads (7)
CreateVisualStudioWorkloadSet.wix.cs (2)
83MsiSwixProject swixProject = new(msiOutputItem, BaseIntermediateOutputPath, BaseOutputPath, workloadSetPackage.SdkFeatureBand, chip: null, machineArch: msiOutputItem.GetMetadata(Metadata.Platform)); 88swixProjectItem.SetMetadata(Metadata.SdkFeatureBand, $"{workloadSetPackage.SdkFeatureBand}");
Msi\WorkloadSetMsi.wix.cs (2)
59string providerKeyName = $"Microsoft.NET.Workload.Set,{_package.SdkFeatureBand},{_package.PackageVersion},{Platform}"; 65candle.AddPreprocessorDefinition(PreprocessorDefinitionNames.SdkFeatureBandVersion, $"{_package.SdkFeatureBand}");
Swix\SwixPackageGroup.wix.cs (1)
37public SwixPackageGroup(WorkloadSetPackage package) : this(package, package.SdkFeatureBand, package.SwixPackageGroupId)
WorkloadSetPackage.wix.cs (2)
58SwixPackageGroupId = $"{DefaultValues.PackageGroupPrefix}.NET.Workloads-{SdkFeatureBand.ToString(3)}"; 59WorkloadSetVersion = GetWorkloadSetVersion(SdkFeatureBand, PackageVersion);