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:
Assembly.Loadand reflection to use non-signed assembly.