0

I am facing the issue that my VSTO add-in is not displaying the publisher name in Outlook's add-in dialog. It is showing as <None>. I am using VS2013 for development. I tried by signing it but did not work. Can anybody please give some specific steps to do it?

Georg Jung
  • 949
  • 10
  • 27
ngupta
  • 31
  • 5
  • Could this earlier post solve your issue? http://stackoverflow.com/questions/10514576/unknown-publisher-still-appears-on-correctly-code-signed-vsto-addin-built-with-v – Barkered May 15 '15 at 12:58
  • That question is about correctly showing the publisher when using the ClickOnce installer. It is kind of related but doesn't solve the problem discussed here. – Georg Jung Jul 14 '16 at 16:52

2 Answers2

2

Unfortunately showing the publisher name is not possible for VSTO Add-ins. Even if you sign

  • all your ClickOnce files with your Authenticode certificate
  • your assembly

and set all possible publisher/company/...-fields for your assembly and the ClickOnce-manifest, the publisher will not show up in the Add-in dialog. This is due to how VSTO security works as commented by this VSTO team member.

Community
  • 1
  • 1
Georg Jung
  • 949
  • 10
  • 27
0

You need to sign the add-in with your own digital signature (not a strong name signature). Did you purchase a certificate from a trusted vendor?

See Introduction to Code Signing for more information in MSDN.

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45