2 writes to Version
Microsoft.DotNet.Build.Tasks.Workloads (2)
Swix\SwixProjectBase.cs (2)
63Version = version; 74Version = package.Version;
7 references to Version
Microsoft.DotNet.Build.Tasks.Workloads (7)
Swix\ComponentSwixProject.cs (1)
53string swixProj = EmbeddedTemplates.Extract("component.swixproj", ProjectSourceDirectory, $"{Id}.{Version.ToString(2)}.swixproj");
Swix\MsiSwixProject.wix.cs (2)
89string hashInputs = $"{Id},{Version.ToString(3)},{sdkFeatureBand},{Platform},{Chip},{machineArch}"; 120msiWriter.WriteLine($" version={Version}");
Swix\PackageGroupSwixProject.wix.cs (1)
48string swixProj = EmbeddedTemplates.Extract("packageGroup.swixproj", ProjectSourceDirectory, $"{Id}.{Version.ToString(2)}.swixproj");
Swix\SwixProjectBase.cs (3)
67ReplacementTokens[SwixTokens.__VS_PACKAGE_VERSION__] = $"{Version}"; 78ReplacementTokens[SwixTokens.__VS_PACKAGE_VERSION__] = $"{Version}"; 95protected virtual string GetRelativePackagePath() => $"{Id},version={Version}";