I'm trying to use DotNetBrowser, but I'm getting an error:
Unable to find or restore compatible Chromium binaries. The assembly DotNetBrowser.Chromium.Win-86.dll containing the binaries was not found in any of the lookup locations
I think it's unable to extract the Chromium binaries, since the generated temp folder is empty:
AppData\Local\Temp\dotnetbrowser-chromium\69.0.3497.12.2.0.0.165\X86
What could I be missing here?
If I run the DotNetBrowser.WinForms.Demo.exe
that comes with the download files, it works fineābut it doesn't extract the binaries, at least not into temp folder.
This is my code:
IEngine engine;
IBrowser browser;
BrowserView browserView = new BrowserView() {
Dock = DockStyle.Fill
};
engine = EngineFactory.Create();
browser = engine.CreateBrowser();
browser.Navigation.LoadUrl("https://teamdev.com/dotnetbrowser");
browserView.InitializeFrom(browser);
I'm running this on a Windows Server 2012 Standard x64.