Upgrade to CefGlue v70 and CefSharp v71 - chromelyapps/Chromely.Legacy GitHub Wiki

Chromely v4 - Please Note!

Creating browser window with CefGlue prio to version 70

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = new CefGlueBrowserWindow(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefGlue from version 70

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = ChromelyWindow.Create(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefSharp prio to version 71

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = new CefSharpBrowserWindow(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefSharp from version 71

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = ChromelyWindow.Create(config))
      {
         return window.Run(args);
      }
  }
}