views:

822

answers:

2

According to the FAQ to GoDaddy they support SignTool from Microsoft, but mage.exe isn't mentioned. Mage.exe is used to sign the application, but I haven't been able to figure out if mage.exe uses SignTool. If anyone have used GoDaddy's code signing certificate for ClickOnce a short confirmation would have been appreciated.

+4  A: 

I'm using GoDaddy's code signing certificate with a ClickOnce deployment. To sign the deployment, I just call the SignFile Task in MSBuild during the deployment build script.

DavGarcia
Any reason for not using mage.exe?
tronda
Our deployment script is completely written in MSBuild, so we can use GenerateApplicationManifest and GenerateDeploymentManifest tasks to create the .application files. The outputs of those tasks feed directly into the SignFile task, eliminating the need to use mage.
DavGarcia
Darn limits... http://msdn.microsoft.com/en-us/library/6wc2ccdc.aspx
DavGarcia
A: 

Both the Mage.exe as well as the SignFile MSBuild Task use the SignTool.exe to sign the files. (reflectored both tools, to build my own custom solution)

Rudi