From 6740acacd14ce2b62e7c7cb3c611808d9f7bcb3b Mon Sep 17 00:00:00 2001 From: amaitland Date: Fri, 27 Feb 2015 14:04:50 +1000 Subject: [PATCH 1/3] Update to 39.0.0-pre03 --- .../CefSharp.MinimalExample.OffScreen.csproj | 20 +++++++++---------- CefSharp.MinimalExample.OffScreen/Program.cs | 5 +---- .../packages.config | 8 ++++---- .../CefSharp.MinimalExample.WinForms.csproj | 20 +++++++++---------- .../packages.config | 8 ++++---- .../CefSharp.MinimalExample.Wpf.csproj | 20 +++++++++---------- CefSharp.MinimalExample.Wpf/packages.config | 8 ++++---- 7 files changed, 43 insertions(+), 46 deletions(-) diff --git a/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj b/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj index 681be9f..c387cde 100644 --- a/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj +++ b/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj @@ -1,7 +1,7 @@  - - + + Debug @@ -87,15 +87,15 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - + + + + + - - - + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.OffScreen/Program.cs b/CefSharp.MinimalExample.OffScreen/Program.cs index b2ceed2..3019fd8 100644 --- a/CefSharp.MinimalExample.OffScreen/Program.cs +++ b/CefSharp.MinimalExample.OffScreen/Program.cs @@ -24,15 +24,12 @@ namespace CefSharp.MinimalExample.OffScreen Cef.Initialize(new CefSettings()); // Create the offscreen Chromium browser. - browser = new ChromiumWebBrowser(); + browser = new ChromiumWebBrowser(testUrl); // An event that is fired when the first page is finished loading. // This returns to us from another thread. browser.FrameLoadEnd += BrowserFrameLoadEnd; - // Start loading the test URL in Chrome's thread. - browser.Load(testUrl); - // We have to wait for something, otherwise the process will exit too soon. Console.ReadKey(); diff --git a/CefSharp.MinimalExample.OffScreen/packages.config b/CefSharp.MinimalExample.OffScreen/packages.config index 529c54a..277e180 100644 --- a/CefSharp.MinimalExample.OffScreen/packages.config +++ b/CefSharp.MinimalExample.OffScreen/packages.config @@ -1,7 +1,7 @@  - - - - + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj b/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj index 1ceab51..5828065 100644 --- a/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj +++ b/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj @@ -1,7 +1,7 @@  - - + + Debug AnyCPU @@ -104,14 +104,14 @@ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - + + + + + - - - + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WinForms/packages.config b/CefSharp.MinimalExample.WinForms/packages.config index 05450c3..a7a36f4 100644 --- a/CefSharp.MinimalExample.WinForms/packages.config +++ b/CefSharp.MinimalExample.WinForms/packages.config @@ -1,7 +1,7 @@  - - - - + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj b/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj index c2e450d..2ae8407 100644 --- a/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj +++ b/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj @@ -1,7 +1,7 @@  - - + + Debug @@ -134,19 +134,19 @@ + This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - + + + + + - - - + + - - + \ No newline at end of file From b58a0c5b73be7e88d621ada2cbe090dd8c465f24 Mon Sep 17 00:00:00 2001 From: amaitland Date: Wed, 8 Apr 2015 10:51:21 +1000 Subject: [PATCH 3/3] Update to `39.0.0` release packages --- .../CefSharp.MinimalExample.OffScreen.csproj | 13 ++++++------- CefSharp.MinimalExample.OffScreen/packages.config | 8 ++++---- .../CefSharp.MinimalExample.WinForms.csproj | 10 +++++----- CefSharp.MinimalExample.WinForms/packages.config | 8 ++++---- .../CefSharp.MinimalExample.Wpf.csproj | 10 +++++----- CefSharp.MinimalExample.Wpf/packages.config | 8 ++++---- 6 files changed, 28 insertions(+), 29 deletions(-) diff --git a/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj b/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj index 8f3d3f6..82bbf23 100644 --- a/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj +++ b/CefSharp.MinimalExample.OffScreen/CefSharp.MinimalExample.OffScreen.csproj @@ -1,7 +1,7 @@  - - + + Debug @@ -82,8 +82,7 @@ - - - - - + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.OffScreen/packages.config b/CefSharp.MinimalExample.OffScreen/packages.config index 277e180..5cd152e 100644 --- a/CefSharp.MinimalExample.OffScreen/packages.config +++ b/CefSharp.MinimalExample.OffScreen/packages.config @@ -1,7 +1,7 @@  - - - - + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj b/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj index c6c2963..da09c3a 100644 --- a/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj +++ b/CefSharp.MinimalExample.WinForms/CefSharp.MinimalExample.WinForms.csproj @@ -1,7 +1,7 @@  - - + + Debug AnyCPU @@ -98,7 +98,7 @@ - - - + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WinForms/packages.config b/CefSharp.MinimalExample.WinForms/packages.config index a7a36f4..eb0aedf 100644 --- a/CefSharp.MinimalExample.WinForms/packages.config +++ b/CefSharp.MinimalExample.WinForms/packages.config @@ -1,7 +1,7 @@  - - - - + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj b/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj index 085562a..83bb0e0 100644 --- a/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj +++ b/CefSharp.MinimalExample.Wpf/CefSharp.MinimalExample.Wpf.csproj @@ -1,7 +1,7 @@  - - + + Debug @@ -132,9 +132,9 @@ - - - + + +