[Internal] Chrome Engine (CEF) version used in IronPDF
Step instructions on how to check Chrome Engine (CEF) version used in IronPdf.
Via NuGet Package
- Go to NuGet Package page HERE, and search for IronPdf.Native package.
- Select the package type of interest. There would be 2 factors to consider on which package type to select below.
- Operating system of interests (Windows, Linux, or Mac)
- Type of Support
- Short Term Support: UpdatedChrome Package.
- Long Term Support: Chrome Package
- Under the About panel, click the option Download package.
- After downloading the package, please change the file type to .zip from .nupkg
- Unzip the package and navigate for libcef.dll as follow.
: runtimes -> winx64 (or other architectural target group) -> native -> libcef.dll - Right click at libcef.dll and select Properties.
- 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.