You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
usingSystem.Diagnostics;
usingCefSharp.RenderProcess;
namespaceCefSharp.BrowserSubprocess
{
/// <summary>
/// When implementing your own BrowserSubprocess
/// - For Full .Net use <see cref="WcfBrowserSubprocessExecutable"/>
/// - For .Net Core use <see cref="BrowserSubprocessExecutable"/> (No WCF Support)
/// - Include an app.manifest with the dpi/compatability sections, this is required (this project contains the relevant).
/// - If you are targeting x86/Win32 then you should set /LargeAddressAware (https://docs.microsoft.com/en-us/cpp/build/reference/largeaddressaware?view=vs-2017)
/// </summary>
publicclassProgram
{
publicstaticintMain(string[]args)
{
Debug.WriteLine("BrowserSubprocess starting up with command line: "+string.Join("\n",args));
//Add your own custom implementation of IRenderProcessHandler here