Skip to content

Commit

Permalink
CefSharp 126.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmikkers committed Jul 15, 2024
1 parent 84f9247 commit 8e1be2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 6 additions & 5 deletions Baksteen.Blazor.CefSharpWPF/Baksteen.Blazor.CefSharpWPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CefSharp.Wpf.NETCore" Version="125.0.210" />
<PackageReference Include="chromiumembeddedframework.runtime" Version="125.0.21" />
<PackageReference Include="chromiumembeddedframework.runtime.win-x64" Version="125.0.21" />
<PackageReference Include="chromiumembeddedframework.runtime.win-x86" Version="125.0.21" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" Version="8.0.6" />
<PackageReference Include="CefSharp.Common.NETCore" Version="126.2.70" />
<PackageReference Include="CefSharp.Wpf.NETCore" Version="126.2.70" />
<PackageReference Include="chromiumembeddedframework.runtime" Version="126.2.7" />
<PackageReference Include="chromiumembeddedframework.runtime.win-x64" Version="126.2.7" />
<PackageReference Include="chromiumembeddedframework.runtime.win-x86" Version="126.2.7" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView" Version="8.0.7" />
</ItemGroup>

</Project>
4 changes: 3 additions & 1 deletion Baksteen.Blazor.CefSharpWPF/BlazorCefWebView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ public CefSharpBlazorWebView()

if (!DesignerProperties.GetIsInDesignMode(this))
{
Cef.Initialize(settings);
// note to self: if the following crashes with 'missing locales en-us.pak' after upgrading cefsharp, check the following discussion:
// https://github.com/cefsharp/CefSharp/discussions/4207
Cef.Initialize(settings, performDependencyCheck: true);
}

_webview = new ChromiumWebBrowser();
Expand Down

0 comments on commit 8e1be2d

Please sign in to comment.