Skip to content

Commit

Permalink
Upgrade to 115.3.110
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Aug 2, 2023
1 parent 65b5e1b commit 9119a8d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CefSharp.Wpf.HwndHost/CefSharp.Wpf.HwndHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>CefSharp.Wpf.HwndHost</RootNamespace>
<CefSharpAnyCpuSupport>true</CefSharpAnyCpuSupport>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>114.2.120</Version>
<Version>115.3.110</Version>
<Authors>The CefSharp Authors</Authors>
<Description>The CefSharp Chromium-based browser component. The CefSharp.Wpf.HwndHost.ChromiumWebBrowser control is a drop in replacement for the CefSharp.Wpf.ChromiumWebBrowser that's rougly equivilent to hosting the WinForms version in WPF.</Description>
<Copyright>Copyright © The CefSharp Authors</Copyright>
Expand All @@ -23,11 +23,11 @@
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<PackageReference Include="CefSharp.Common" Version="114.2.120" />
<PackageReference Include="CefSharp.Common" Version="115.3.110" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="CefSharp.Common.NETCore" Version="114.2.120" />
<PackageReference Include="CefSharp.Common.NETCore" Version="115.3.110" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions CefSharp.Wpf.HwndHost/ChromiumWebBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ private void RemoveExNoActivateStyle(IntPtr hwnd)
/// <summary>
/// Initial browser load task complection source
/// </summary>
private TaskCompletionSource<LoadUrlAsyncResponse> initialLoadTaskCompletionSource = new TaskCompletionSource<LoadUrlAsyncResponse>();
private TaskCompletionSource<LoadUrlAsyncResponse> initialLoadTaskCompletionSource = new TaskCompletionSource<LoadUrlAsyncResponse>(TaskCreationOptions.RunContinuationsAsynchronously);

/// <summary>
/// Initial browser load action
Expand Down Expand Up @@ -1826,7 +1826,7 @@ private void InitialLoad(bool? isLoading, CefErrorCode? errorCode)
statusCode = -1;
}

initialLoadTaskCompletionSource.TrySetResultAsync(new LoadUrlAsyncResponse(CefErrorCode.None, statusCode));
initialLoadTaskCompletionSource.TrySetResult(new LoadUrlAsyncResponse(CefErrorCode.None, statusCode));
}
else if (errorCode.HasValue)
{
Expand All @@ -1839,7 +1839,7 @@ private void InitialLoad(bool? isLoading, CefErrorCode? errorCode)

initialLoadAction = null;

initialLoadTaskCompletionSource.TrySetResultAsync(new LoadUrlAsyncResponse(errorCode.Value, -1));
initialLoadTaskCompletionSource.TrySetResult(new LoadUrlAsyncResponse(errorCode.Value, -1));
}
}

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image: Visual Studio 2019

version: 114.2.120-CI{build}
version: 115.3.110-CI{build}

clone_depth: 10

Expand Down

0 comments on commit 9119a8d

Please sign in to comment.