Unable to locate required Cef/CefSharp dependencies

7.2k Views Asked by At

I have a C# console application that is deployed on client machines. While deploying in client machine I get System.TypeInitializationException.

In debug.log, I get the following errors:

Unable to locate required Cef/CefSharp dependencies:
Missing:CefSharp.BrowserSubprocess.exe
Missing:CefSharp.BrowserSubprocess.Core.dll
Missing:CefSharp.Core.dll
Missing:CefSharp.dll
Missing:icudtl.dat
Missing:libcef.dll
Executing Assembly Path:C:\myapp

The problem is that all files are present in the C:\myapp directory (as specified here). Therefore, I'm not sure why these files aren't being loaded up. Also msvcp120.dll, msvcr120.dll, vccorlib120.dll included in c:\myapp directory

3

There are 3 best solutions below

3
On

As many people, I followed the steps in the official Quick Start article to setup the "Any CPU" configuration and I had the same problem with missing dependencies when performDependencyCheck was on.

This is because the article is actually incomplete!

For the "Any CPU" configuration to work, you need to follow all the steps in Feature Request - Add AnyCPU Support #1714 (especially the last one!):

example below:

[STAThread]
public static void Main()
{
  var settings = new CefSettings();
  settings.BrowserSubprocessPath = @"x86\CefSharp.BrowserSubprocess.exe";

  Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);

  var browser = new BrowserForm();
  Application.Run(browser);
}

Note: when using this code, I would still advise you to use performDependencyCheck: true since it will now report only genuine errors.

1
On

I meet the same problem today.

My CEFSharp program works fine when only opening my program, but it's failed when open the associating files.

When I double click to open an associating format file (eg: JPG format file), the application startup fails because of "Unable to locate required Cef/CefSharp dependencies" error.

I tried to set "performDependencyCheck: false", it works when right clicking to choose the My program to open the file. But when double click the jpeg file, the error still stay.

Then I tried to set the current directory to execute file path, it looks works, I think this issue rootcause sometimes is related with the current working folder not right.

    private static void Main(string[] args)
    {
        try
        {
            string exeDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
            if (exeDir != null)
            {
                Directory.SetCurrentDirectory(exeDir);
            }

            if (!Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: browserProcessHandler))
            {
                throw new Exception("Unable to Initialize Cef");
            }
2
On

I had the same issue. first I saw that the Cef.Initialize() function just don't work, so I enabled the performDependencyCheck option like this:

Cef.Initialize(BrowserSettings, performDependencyCheck: true, browserProcessHandler: null);

(According to this example https://github.com/cefsharp/CefSharp.MinimalExample/blob/master/CefSharp.MinimalExample.OffScreen/Program.cs)

and I saw I am missing some files.

Afterwards, the error kept showing up, even though I don't miss anything. so i disabled the performDependencyCheck option and it worked.(like this:

Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);

Hope it will help you.