Skip to content

Commit

Permalink
Merge pull request #77 from MiriamMcMahon/release-1.0
Browse files Browse the repository at this point in the history
fix build tool setting
  • Loading branch information
Miriam McMahon authored Jul 15, 2022
2 parents 98c25cd + ac0abeb commit a01fcc7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,8 @@ Task("SignPath")
new SignToolSignSettings {
ToolPath = signTool,
CertPath = CertPath,
Password = CertPass
Password = CertPass,
DigestAlgorithm = SignToolDigestAlgorithm.Sha256
});
});

Expand All @@ -341,7 +342,8 @@ Task("SignMsi")
new SignToolSignSettings {
ToolPath = signTool,
CertPath = CertPath,
Password = CertPass
Password = CertPass,
DigestAlgorithm = SignToolDigestAlgorithm.Sha256
});
});

Expand Down

0 comments on commit a01fcc7

Please sign in to comment.