Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net462;net7.0</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
Expand All @@ -13,17 +13,17 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PInvoke.Kernel32" Version="0.7.104" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
<PackageReference Include="StreamJsonRpc" Version="2.11.35" />
<PackageReference Include="PInvoke.Kernel32" Version="0.7.124" />
<PackageReference Include="PInvoke.User32" Version="0.7.124" />
<PackageReference Include="StreamJsonRpc" Version="2.13.33" />
</ItemGroup>

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

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

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,13 @@ public partial class OutOfProcessChromiumWebBrowser : IWebBrowserInternal
/// Implement <see cref="IDragHandler" /> and assign to handle events related to dragging.
/// </summary>
/// <value>The drag handler.</value>
public IDragHandler DragHandler { get; set; }
public IDragHandler DragHandler { get; set; }

/// <summary>
/// Implement <see cref="IPermissionHandler" /> and assign to handle events related to permissions.
/// </summary>
public IPermissionHandler PermissionHandler { get; set; }

/// <summary>
/// Implement <see cref="IResourceRequestHandlerFactory" /> and control the loading of resources
/// </summary>
Expand Down Expand Up @@ -811,8 +817,8 @@ public void Load(string url)
public IJavascriptObjectRepository JavascriptObjectRepository
{
get { return _managedCefBrowserAdapter?.JavascriptObjectRepository; }
}

}
/// <summary>
/// TODO: Improve focus
/// Has Focus
Expand Down