Search code examples
c#chromium-embeddedcefsharp

How to determine cefsharp version


How I can know which version of cefsharp, cefsharp chromium version I'm using? I guess there is a command like //b/c that I can use to know. Are there any other methods?

Also: What is the difference between cefsharp version and cefsharp chromium version?


Solution

  • All the information you need is available in this url: chrome://version/. Just point the browser to that url and check out the first two values. They are the version of CEFSharp and the version number of Chromium in that order.

    CEF version

    Image taken from CodeProject

    CEFSharp is a project that helps you embed the Chromium web browser into your application. Since Chromium is a standalone project not affiliated with CEFSharp, it has its own version numbers as any other project. To support each new version of Chromium, CEFSharp developers need to make changes to their project, which in turn increases their version number.