I\'ve been extremely frustrated trying to deploy a C#/WPF application I\'ve created that has some references to 3rd party DLLs. I created a folder in the project, called
Read very carefully the official list of CefSharp dependencies - there are a lot of them! You need to get them all into the ClickOnce bin folder somehow.
Here is how I solved it:
CefSharp, CefSharp.Core, etc.Files\CefSharp\).Build Action: Content, and Copy to Output Dir: Copy always.Initalise_CefSharpFiles() to copy the files/folders into the bin root folder (where CefSharp looks for them). For example, copy from: Bin\Files\CefSharp\* to: Bin\*.Initalise_CefSharpFiles() once after the app loads, and before initialising CefSharp's settings.