2 writes to Id
Microsoft.DotNet.Build.Tasks.Workloads (2)
Swix\SwixProjectBase.cs (2)
62Id = id; 73Id = package.Name;
9 references to Id
Microsoft.DotNet.Build.Tasks.Workloads (9)
Swix\ComponentSwixProject.cs (1)
53string swixProj = EmbeddedTemplates.Extract("component.swixproj", ProjectSourceDirectory, $"{Id}.{Version.ToString(2)}.swixproj");
Swix\MsiSwixProject.wix.cs (4)
83ProjectSourceDirectory = Path.Combine(SwixDirectory, $"{sdkFeatureBand}", Id, Platform); 89string hashInputs = $"{Id},{Version.ToString(3)},{sdkFeatureBand},{Platform},{Chip},{machineArch}"; 119msiWriter.WriteLine($"package name={Id}"); 151msiWriter.WriteLine($" vs.logFile pattern=\"dd_setup*{Id}*.log\"");
Swix\PackageGroupSwixProject.wix.cs (1)
48string swixProj = EmbeddedTemplates.Extract("packageGroup.swixproj", ProjectSourceDirectory, $"{Id}.{Version.ToString(2)}.swixproj");
Swix\SwixProjectBase.cs (3)
66ReplacementTokens[SwixTokens.__VS_PACKAGE_NAME__] = Id; 77ReplacementTokens[SwixTokens.__VS_PACKAGE_NAME__] = Id; 95protected virtual string GetRelativePackagePath() => $"{Id},version={Version}";