vote up 0 vote down star

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.

flag

50% accept rate

2 Answers

vote up 4 vote down check

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|flag
Any reason for not using mage.exe? – tronda Jan 13 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. – David Thomas Garcia Jan 13 at 19:10
Darn limits... msdn.microsoft.com/en-us/library/… – David Thomas Garcia Jan 13 at 19:10
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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