Вопрос

I'm getting errors when loading CefSharp assemblies in my project. Both CefSharp and CefSharp.WinForms are not strongly named. 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
  • stop signing your own assemblies
  • use Assembly.Load and reflection to use non-signed assembly.
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top