I have a XAML browser application created in Visual Studio that I am trying to deploy to a client. (Using Visual Studio 2015 Community.)
In attempting to sign my ClickOnce assembly using a commercial certificate (SHA256 algorithm), Visual Studio is giving the following error message:
C:\Program Files\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(3616,5): error MSB3482: An error occurred while signing: Failed to sign bin\Debug\app.publish\ [assembly name] .exe. SignTool Error: Invalid option: /fd
Previously we were using a self-issued test certificate which utilized SHA1 with the following settings:
But when tried with a self-issued SHA256 test certificate (or using the commercial certificate which is also SHA256) with the following settings we receive the aforementioned error.
Any ideas on how to get Visual Studio to use these SHA256 certificates?


