Remove BrowserSubprocessPath from examples - it's already set by default
This commit is contained in:
parent
b839e5d622
commit
33ab4ef538
@ -12,12 +12,7 @@ namespace CefSharp.MinimalExample.WinForms
|
|||||||
[STAThread]
|
[STAThread]
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
var settings = new CefSettings
|
Cef.Initialize(new CefSettings());
|
||||||
{
|
|
||||||
BrowserSubprocessPath = "CefSharp.BrowserSubprocess.exe"
|
|
||||||
};
|
|
||||||
|
|
||||||
Cef.Initialize(settings);
|
|
||||||
|
|
||||||
var browser = new BrowserForm();
|
var browser = new BrowserForm();
|
||||||
Application.Run(browser);
|
Application.Run(browser);
|
||||||
|
@ -6,12 +6,7 @@ namespace CefSharp.MinimalExample.Wpf
|
|||||||
{
|
{
|
||||||
public App()
|
public App()
|
||||||
{
|
{
|
||||||
var settings = new CefSettings
|
Cef.Initialize(new CefSettings());
|
||||||
{
|
|
||||||
BrowserSubprocessPath = "CefSharp.BrowserSubprocess.exe"
|
|
||||||
};
|
|
||||||
|
|
||||||
Cef.Initialize(settings);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user