Question

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.

Était-ce utile?

La solution

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.
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top