Update to 53.0.0-pre01

shutdownOnProcessExit has been removed
This commit is contained in:
amaitland
2016-09-15 21:01:04 +10:00
parent ac451f78d0
commit c1276f824d
9 changed files with 36 additions and 36 deletions

View File

@@ -13,7 +13,7 @@ namespace CefSharp.MinimalExample.WinForms
public static void Main()
{
//Perform dependency check to make sure all relevant resources are in our output directory.
Cef.Initialize(new CefSettings(), shutdownOnProcessExit:false, performDependencyCheck:true);
Cef.Initialize(new CefSettings(), performDependencyCheck: true, browserProcessHandler: null);
var browser = new BrowserForm();
Application.Run(browser);