使用 CefSharp 的自定义 libcef.dll 路径

Custom libcef.dll path with CefSharp

是否可以使用 CefSharp 项目为 libcef.dll 设置自定义路径?

我们将此 dll 包含到安装程序中的成本非常高。

您可以在所需位置调用 LoadLibrary(Ex)(通过 P/Invoke)。我在 CefGlue 中使用了这种方法。 CefRuntime.LoadLibraryWindows.

您还需要在访问 CefSharp 程序集之前调用它,即在 Cef.Initialize 之前,并且可能在访问 Cef class.

的方法之外