How to Signing xap file using pfx in Silverlight Application

泄露秘密 提交于 2019-12-11 04:56:10

问题


I have created a silver-light Application using Visual Studio 2012.I'm not getting Signing page in the project properties. How to configure pfx file in silverlight 5.


回答1:


Visual Studio is looking for in for a register key named {B07DA5DD-055B-4018-88F3-3A433FDB9B25}.VS 2012 Pro's installer doesn't create this key.So we need to create this registry-key manually ,

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\11.0\CLSID\{B07DA5DD-055B-4018-88F3-3A433FDB9B25}
(OR)
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0_Config\CLSID\{B07DA5DD-055B-4018-88F3-3A433FDB9B25}
  • "Class" = "Microsoft.VisualStudio.Silverlight.SigningPropertyPageComClass"
  • "Assembly" = "Microsoft.VisualStudio.Silverlight, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  • "ThreadingModel" = "Both"
  • "InprocServer32" = "c:\Windows\SysWOW64\mscoree.dll"
  • "Default" = "Microsoft.VisualStudio.Silverlight.SigningPropertyPageComClass"



来源:https://stackoverflow.com/questions/31669850/how-to-signing-xap-file-using-pfx-in-silverlight-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!