In the FAQs of CefSharp, it states that you should disable Package Loading:
var settings = new CefSharp.CefSettings
{
PackLoadingDisabled = true
};
which is normally OK for a production-mode application
I have an issue where on a particular website a red border is appearing around a drop-down box. If I set PackLoadingDisabled = false
and ensure that the cef.pak
file is in the folder (This cef.pak is distributed with the CefSharp nuget package. I am not including any other .pak file except locates/en-US.pak) then this fixes the issue.
My question is, What purpose does this cef.pak file serve?
I've looked at the CEF3 Readme and it shows that it is optional, but it isn't very clear on what purpose this Pack serves. Before I go and include it in my software distribution I need to know exactly what it is for.
Am I safe to enabled Pack Loading in my release version?