up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 5 down vote accepted

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.

link|improve this answer
Any reason for not using mage.exe? – tronda Jan 13 '09 at 15:54
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 Jan 13 '09 at 19:10
Darn limits... msdn.microsoft.com/en-us/library/6wc2ccdc.aspx – DavGarcia Jan 13 '09 at 19:10
feedback

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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.