[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: OpenEdge 11.7.5 - Embed Chrome Browser

Status
Not open for further replies.
P

Patrik Wikström

Guest
Hope this helps? Might be some errors in there still so read carefully and don't trust it blindly.... If someone knows a easier way to get the packages downloaded, please tell! How to get the CefSharp plugin installed for the first time Developer Studio / Application needs these We need all the WinForms, Common and cef-redist files. We need to add three CefSharp dll-files to our assemblies.xml and configure one additional subfolder for the location of the Cefsharp files in assemblies.config. Steps Install NuGet command line tool Manage NuGet packages using the nuget.exe CLI Download packages ( CefSharp.WinForms 79.1.360 ). Notice! Be very careful which versions of other packages the package depends on. 75.1.143 of Commons and WinForms and 75.1.14 of redist. nuget install cef.redist.x64 -OutputDirectory C:\tmp\cefsharp -Version 75.1.14 (nuget install cef.redist.x64 -OutputDirectory C:\tmp\cefsharp) nuget install CefSharp.Common -OutputDirectory C:\tmp\cefsharp nuget install CefSharp.WinForms -OutputDirectory C:\tmp\cefsharp Gather the 64-bit files from the output directories into a single directory: C:\tmp\cefsharp\cef.redist.x64.77.1.14\CEF C:\tmp\cefsharp\CefSharp.Common.75.1.143\CefSharp\x64 C:\tmp\cefsharp\CefSharp.WinForms.75.1.143\CefSharp\x64 Remove the unnecessary *.pdb files. Install all the files in the folder C:\src\assemblies\CefSharp. Add (if not already added) the "CefSharp" to the C:\src\assemblies\assemblies.config. Add the three dll-files to one of the Developer Studio project "Referenced Assemblies". CefSharp.WinForms.dll CefSharp.dll CefSharp.Core.dll Now the Developer Studio installation is ready.

Continue reading...
 
Status
Not open for further replies.
Top