之前找了不少資料,下面是自己測試過的步驟
步驟一:添加節點CefSharpAnyCpuSupport
unload項目後可以編輯.csproj檔案。或者直接用記事本編輯。
每個用到CefSharp的項目都添加。
DebugAnyCPU ... true
步驟二:在App.xaml.cs構造函數裡添加代碼
public App(){ // 當程式集的解析失敗時, 從x86或x64子目錄加載缺少的程式集 AppDomain.CurrentDomain.AssemblyResolve += Resolver; // 初始化CefSharp InitializeCefSharp();} /// /// CefSharp初始化設定/// [MethodImpl(MethodImplOptions.NoInlining)]private static void InitializeCefSharp(){ var settings = new CefSettings(); //設定語言 settings.Locale = "zh-CN"; //禁用gpu,防止浏覽器閃爍 settings.CefCommandLineArgs.Add("disable-gpu", "1"); //去掉代理,增加加載網頁速度 settings.CefCommandLineArgs.Add("proxy-auto-detect", "0"); settings.CefCommandLineArgs.Add("no-proxy-serve", "1"); // 在運作時根據系統類型(32/64位),設定BrowserSubProcessPath settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", "CefSharp.BrowserSubprocess.exe"); // 確定設定performDependencyCheck為false CefSharp.Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);}// 嘗試從x86或x64子目錄加載缺少的程式集// 在使用AnyCPU運作時,CefSharp要求加載非托管依賴項private static Assembly Resolver(object sender, ResolveEventArgs args){ if (args.Name.StartsWith("CefSharp")) { string assemblyName = args.Name.Split(new[] { ',' }, 2)[0] + ".dll"; string archSpecificPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", assemblyName); return File.Exists(archSpecificPath) ? Assembly.LoadFile(archSpecificPath) : null; } return null;}
其他可選配置說明:修改app.config檔案
- 隻需要修改啟動項目下的app.config檔案
- 這段配置的意思是運作時從x86目錄加載程式集,需要勾選首選32位,否則編譯成64位程式會報錯。