| 7 | namespace WebView2WindowsFormsBrowser |
| 8 | { |
| 9 | static class Program |
| 10 | { |
| 11 | /// <summary> |
| 12 | /// The main entry point for the application. |
| 13 | /// </summary> |
| 14 | [STAThread] |
| 15 | static void Main() |
| 16 | { |
| 17 | Application.EnableVisualStyles(); |
| 18 | Application.SetCompatibleTextRenderingDefault(false); |
| 19 | Application.Run(new BrowserForm()); |
| 20 | } |
| 21 | } |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected