How to not sign a ClickOnce manifest

前端 未结 2 510
醉话见心
醉话见心 2020-12-09 12:18

I have an Office 2007 (specifically Outlook 2007) add in created in Visual Studio 2008.

When I uncheck the \"Sign the ClickOnce manifests\" option, and the

2条回答
  •  再見小時候
    2020-12-09 13:22

    While you don't have to sign the manifest any more with Windows Forms, WPF and console applications, VSTO solutions still require that the manifests be signed when using ClickOnce deployment.

    Most VSTO scenarios are in the enterprise where best practices require signing of applications. Also since VSTO solutions always run full trust there is a higher risk associated with making signing optional. This is completely separate from signing a DLL file; you don't need to sign the assembly with a ClickOnce-deployed VSTO application, you have to sign the manifests; they handle the hashing and verification of the files at install time.

提交回复
热议问题