EdgeSharp, an offshoot of Chromely, is a .NET HTML5 Win32/WinForms/Wpf WebView2 desktop framework.
- Win32 - Implements a .NET win32 window to host WebView2 as a browser.
- WinForms - Adds value to base Microsoft WebView2 WinForms offering.
- Wpf - Adds value to base Microsoft WebView2 Wpf offering.
A basic EdgeSharp Win32 project requires:
class Program
{
    [STAThread]
    static void Main(string[] args)
    {
        AppBuilder
        .Create()
        .UseConfig<SampleConfig>()
        .UseWindow<SampleWindow>()
        .UseApp<SampleApp>()
        .Build()
        .Run(args);
    }
}Get started with using samples.
- WebView2 - https://docs.microsoft.com/en-us/microsoft-edge/webview2/
- Chromium.AspNetCore.Bridge - https://github.com/amaitland/Chromium.AspNetCore.Bridge

