I am trying to work with CefSharp for video chat in my WPF application. So I added CefSharp using NuGet and added both CefSharp.Core and CefSharp.WPF. But when ever I try to run it gives me an error, both the code and error is added as image below.Please guide me.
This is the error I am getting.
From the top screenshot I see that you are running with
Any CPU
as platform. You need that to either bex86
orx64
. See the Please note: comment under FAQ item #8 at https://github.com/cefsharp/CefSharp/wiki/Frequently-asked-questions#CefSharp_binaries for further.The current CefSharp NuGet packages need that to pick up the right unmanaged CEF binaries.
In addition I'd recommend that you start with
CefSharp.MinimalExample.Wpf
from https://github.com/cefsharp/CefSharp.MinimalExample