This is probably a very simple question. I copied the example CefSharp MinimalExample.WinForms project to a new directory and renamed to WinProxy. It builds ok. When I run it I get;
An unhandled exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll Additional information: Could not load file or assembly 'CefSharp.Core.dll' or one of its dependencies. The specified module could not be found.
Comparing with the example directory, I am missing a number of files listed here https://github.com/cefsharp/CefSharp/wiki/Output-files-description-table-(Redistribution)
I do have CefSharp.Core.dll, CefSharp.WinForms.dll and CefSharp.dll which were all referenced in the example project.
How do I get the rest? I tried copying them over and rebuilding but I get;
An unhandled exception of type 'System.IO.FileLoadException' occurred in mscorlib.dll Additional information: A procedure imported by 'CefSharp.Core.dll' could not be loaded.
Thanks.
CefSharp.MinimalExample.WinForms
run before you made your modifications? Theunmanaged
dependencies are copied by theNuget
package on build. Try removing theCefSharp.WinForms
package and reinstalling it. – CoquetryNuget.org
is ticked. – Coquetrymyget
feed things should start to work again. I'm in the process of releasing the next release version45.0.0
, so you've kinda been caught in a limbo period where packages haven't been uploaded toNuget.org
yet. Also incase your not aware,CefSharp
requiredVC++
to run, see github.com/cefsharp/CefSharp#version-branches for details. – Coquetry45.0.0
release is up onNuget.org
now, it might be worth re downloading theMinimalExample
, making sure it works, then making your modifications. – Coquetry