Skip to content
English
  • There are no suggestions because the search field is empty.

[Internal] Chrome Engine (CEF) version used in IronPDF

Step instructions on how to check Chrome Engine (CEF) version used in IronPdf.

Via NuGet Package

  1. Go to NuGet Package page HERE, and search for IronPdf.Native package.
  2. Select the package type of interest. There would be 2 factors to consider on which package type to select below.
    1. Operating system of interests (Windows, Linux, or Mac)
    2. Type of Support
      1. Short Term Support: UpdatedChrome Package.
      2. Long Term Support: Chrome Package
  3. Under the About panel, click the option Download package.
  4. After downloading the package, please change the file type to .zip from .nupkg
  5. Unzip the package and navigate for libcef.dll as follow. 
    : runtimes -> winx64 (or other architectural target group) -> native -> libcef.dll
  6. Right click at libcef.dll and select Properties.
  7. Go to the section Details from the top options and you will see the CEF version under the Product version

Via Visual Studio

If you already have a C# project with IronPDF installed, once you compile and run the code, you will get the runtime folder which contains the libcef.dll

 

To access the libcef.dll, please navigate it as follow.

: bin -> debug (or release) -> runtimes -> winx64 (or other architectural target group) -> native -> libcef.dll

To access the CEF version, please follow the instruction Step 6.-7. under the Via NuGet section.