Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating unsigned ClickOnce deployments with MageUI

With .Net 3.5 SP1 it is no longer required to sign ClickOnce manifest files. We've incorporated MageUI into our deployment process and would like to deploy some unsigned applications. Mage will let me create an unsigned application manifest. However, it will not let me point the deployment manifest to the unsigned application manifest. It says, "The application manifest is not signed".

Is this a bug? I'm running version 3.5.30729.1; is there a newer version that fixes this? Any ideas for workarounds?

like image 827
codeConcussion Avatar asked Apr 24 '09 14:04

codeConcussion


2 Answers

I have the same issue.

Workaround is to add the XML Fragment by hand into the Application Manifest XML

like image 199
vladimir Avatar answered Nov 15 '22 12:11

vladimir


Just a word of warning -- are you deploying this internally-only? Removing the signing is allowed, but not advised. It removes all hashing of the files, and makes your application vulnerable to having the files replaced by malware.

like image 32
RobinDotNet Avatar answered Nov 15 '22 10:11

RobinDotNet