Set shutdownOnProcessExit to false (code has actually been removed so it's ignored totally now, just updating for completeness)

Remove --disable-gpu from OSR examples
This commit is contained in:
amaitland
2016-06-07 15:11:50 +10:00
parent 144544d40d
commit 8f59950029
3 changed files with 3 additions and 7 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:true, performDependencyCheck:true);
Cef.Initialize(new CefSettings(), shutdownOnProcessExit:false, performDependencyCheck:true);
var browser = new BrowserForm();
Application.Run(browser);