Skip to content

Commit

Permalink
Capture .wixobj data to support post-build signing (#7406)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeloff authored May 19, 2021
1 parent fecdaec commit 0b0d5b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ protected IEnumerable<ITaskItem> Generate(string sourcePackage, string swixPacka
msi.SetMetadata(Metadata.Platform, platform);
msi.SetMetadata(Metadata.Version, nupkg.ProductVersion);
msi.SetMetadata(Metadata.JsonProperties, msiJsonPath);
msi.SetMetadata(Metadata.WixObj, candleIntermediateOutputPath);

if (GenerateSwixAuthoring && IsSupportedByVisualStudio(platform))
{
Expand Down
1 change: 1 addition & 0 deletions src/Microsoft.DotNet.Build.Tasks.Workloads/src/Metadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ internal class Metadata
public const string SwixProject = "SwixProject";
public const string Title = "Title";
public const string Version = "Version";
public const string WixObj = "WixObj";
}
}

0 comments on commit 0b0d5b9

Please sign in to comment.