“CefSharp.Core.dll' 找不到指定的模块

项目中用到CefSharp,部署的时候遇到 ”CefSharp.Core.dll' 找不到指定的模块

查看Nuget Readme.txt

Basic Troubleshooting:
  - Minimum of .Net 4.0 Client Profile
  - Make sure `VC++ 2013 Redist` is installed (either `x86` or `x64` depending on your application)
  - Please ensure your binaries directory contains these required dependencies:
    * libcef.dll (CEF code)
    * icudtl.dat (Unicode Support data)
    * CefSharp.Core.dll, CefSharp.dll, 
      CefSharp.BrowserSubprocess.exe, CefSharp.BrowserSubProcess.Core.dll
        - These are required CefSharp binaries that are the common core logic binaries of CefSharp.
    * One of the following UI presentation approaches:
        * CefSharp.WinForms.dll
        * CefSharp.Wpf.dll
        * CefSharp.OffScreen.dll
  - Additional optional CEF files are described at: https://github.com/cefsharp/cef-binary/blob/master/README.txt#L82
    NOTE: CefSharp does not currently support CEF sandboxing so wow_helper.exe is not currently useful.

发现依赖VC++ 2013 Redist 下载 将dll拷贝到程序安装目录下即可。

附1分下载资源:https://download.csdn.net/download/zhishiheng/10859000

ps:csdn现在无法设置0分资源,坑!

你可能感兴趣的:(C#)