简体   繁体   English

CefSharp - 名字很棒

[英]CefSharp - Strongly Named

I'm getting errors when loading CefSharp assemblies in my project. 我在项目中加载CefSharp程序集时遇到错误。 Both CefSharp and CefSharp.WinForms are not strongly named. CefSharp和CefSharp.WinForms都没有强名称。 Is there any way around this? 有没有办法解决?

Error: 错误:

Referenced assembly 'CefSharp.WinForms' does not have a strong name 
Referenced assembly 'CefSharp' does not have a strong name

Thanks. 谢谢。

Strongly signed assemblies can't refer to non-signed assemblies. 强签名的程序集不能引用未签名的程序集。 So your options are: 所以你的选择是:

  • find (or create if license allows you to do so) strongly signed version of the CefSharp.XXX assemblies 查找(或创建,如果许可证允许您这样做)强烈签名的CefSharp.XXX程序集版本
  • stop signing your own assemblies 停止签署自己的程序集
  • use Assembly.Load and reflection to use non-signed assembly. 使用Assembly.Load和reflection来使用非签名程序集。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM