1 write to Platform
Microsoft.DotNet.Build.Tasks.Workloads (1)
Msi\MsiBase.wix.cs (1)
125
Platform
= platform;
20 references to Platform
Microsoft.DotNet.Build.Tasks.Workloads (20)
Msi\MsiBase.wix.cs (5)
96
protected string OutputName => $"{Utils.GetTruncatedHash(BaseOutputName, HashAlgorithmName.SHA256)}-{
Platform
}.msi";
168
CompilerToolTask candle = new(BuildEngine, WixToolsetPath, CompilerOutputPath,
Platform
);
177
candle.AddPreprocessorDefinition(PreprocessorDefinitionNames.Platform,
Platform
);
179
candle.AddPreprocessorDefinition(PreprocessorDefinitionNames.ProductName, GetProductName(
Platform
));
233
msiItem.SetMetadata(Workloads.Metadata.Platform,
Platform
);
Msi\WorkloadManifestMsi.wix.cs (6)
57
Platform = this.
Platform
,
90
Platform = this.
Platform
,
135
Guid upgradeCode = IsSxS ? Utils.CreateUuid(UpgradeCodeNamespaceUuid, $"{Package.Identity};{
Platform
}") :
136
Utils.CreateUuid(UpgradeCodeNamespaceUuid, $"{Package.ManifestId};{Package.SdkFeatureBand};{
Platform
}");
138
$"{Package.ManifestId},{Package.SdkFeatureBand},{Package.PackageVersion},{
Platform
}" :
139
$"{Package.ManifestId},{Package.SdkFeatureBand},{
Platform
}";
Msi\WorkloadPackGroupMsi.wix.cs (3)
64
Platform = this.
Platform
,
127
Guid upgradeCode = Utils.CreateUuid(UpgradeCodeNamespaceUuid, $"{Metadata.Id};{
Platform
}");
128
string providerKeyName = $"{_package.Id},{Metadata.PackageVersion},{
Platform
}";
Msi\WorkloadPackMsi.wix.cs (3)
39
Platform = this.
Platform
,
62
Guid upgradeCode = Utils.CreateUuid(UpgradeCodeNamespaceUuid, $"{_package.Identity};{
Platform
}");
63
string providerKeyName = $"{_package.Id},{_package.PackageVersion},{
Platform
}";
Msi\WorkloadSetMsi.wix.cs (3)
39
Platform = this.
Platform
,
58
Guid upgradeCode = Utils.CreateUuid(UpgradeCodeNamespaceUuid, $"{_package.Identity};{
Platform
}");
59
string providerKeyName = $"Microsoft.NET.Workload.Set,{_package.SdkFeatureBand},{_package.PackageVersion},{
Platform
}";