From 9d02f862a8faa60a119dde7bef0ec49788d8ffc9 Mon Sep 17 00:00:00 2001 From: Chris Hurst Date: Thu, 14 Jun 2018 09:59:37 -0500 Subject: [PATCH] Add WPF Browser Application (XBAP) Example where CefSharp doesn't work for WPF application --- CefSharp.MinimalExample.WpfXBap/App.config | 20 +++ CefSharp.MinimalExample.WpfXBap/App.xaml | 9 + CefSharp.MinimalExample.WpfXBap/App.xaml.cs | 96 ++++++++++ .../CefSharp.MinimalExample.WpfXBap.csproj | 165 ++++++++++++++++++ ...rp.MinimalExample.WpfXBap_TemporaryKey.pfx | Bin 0 -> 1648 bytes CefSharp.MinimalExample.WpfXBap/Page1.xaml | 40 +++++ CefSharp.MinimalExample.WpfXBap/Page1.xaml.cs | 28 +++ .../Properties/AssemblyInfo.cs | 55 ++++++ .../Properties/Resources.Designer.cs | 62 +++++++ .../Properties/Resources.resx | 117 +++++++++++++ .../Properties/Settings.Designer.cs | 30 ++++ .../Properties/Settings.settings | 7 + .../Properties/app.manifest | 15 ++ .../packages.config | 7 + CefSharp.MinimalExample.sln | 29 ++- 15 files changed, 679 insertions(+), 1 deletion(-) create mode 100644 CefSharp.MinimalExample.WpfXBap/App.config create mode 100644 CefSharp.MinimalExample.WpfXBap/App.xaml create mode 100644 CefSharp.MinimalExample.WpfXBap/App.xaml.cs create mode 100644 CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap.csproj create mode 100644 CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap_TemporaryKey.pfx create mode 100644 CefSharp.MinimalExample.WpfXBap/Page1.xaml create mode 100644 CefSharp.MinimalExample.WpfXBap/Page1.xaml.cs create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/AssemblyInfo.cs create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/Resources.Designer.cs create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/Resources.resx create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/Settings.Designer.cs create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/Settings.settings create mode 100644 CefSharp.MinimalExample.WpfXBap/Properties/app.manifest create mode 100644 CefSharp.MinimalExample.WpfXBap/packages.config diff --git a/CefSharp.MinimalExample.WpfXBap/App.config b/CefSharp.MinimalExample.WpfXBap/App.config new file mode 100644 index 00000000..4142fe7b --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/App.config @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WpfXBap/App.xaml b/CefSharp.MinimalExample.WpfXBap/App.xaml new file mode 100644 index 00000000..075a2ca3 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/CefSharp.MinimalExample.WpfXBap/App.xaml.cs b/CefSharp.MinimalExample.WpfXBap/App.xaml.cs new file mode 100644 index 00000000..0cc8a9a3 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/App.xaml.cs @@ -0,0 +1,96 @@ +using System; +using System.Diagnostics; +using System.IO; +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Windows; +using CefSharp; + +namespace CefSharp.MinimalExample.WpfXBap +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + #region Constructor + /// + /// + /// + public App() + { + IBrowserProcessHandler browserProcessHandler; + + AppDomain.CurrentDomain.AssemblyResolve += Resolver; + + browserProcessHandler = null; + + //Any CefSharp references have to be in another method with NonInlining + // attribute so the assembly rolver has time to do it's thing. + InitializeCefSharp(browserProcessHandler); + } + #endregion + + #region Protected Methods + /// + /// + /// + /// + protected override void OnExit(ExitEventArgs e) + { + Cef.Shutdown(); + + base.OnExit(e); + } + #endregion + + #region Private Methods + [MethodImpl(MethodImplOptions.NoInlining)] + private static void InitializeCefSharp(IBrowserProcessHandler browserProcessHandler) + { + CefSettings settings; + + try + { + settings = new CefSettings(); + + // Set BrowserSubProcessPath based on app bitness at runtime + settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", "CefSharp.BrowserSubprocess.exe"); + + Cef.Initialize(settings, performDependencyCheck: true, browserProcessHandler: browserProcessHandler); + } + catch (FileNotFoundException exception) + { + Debug.WriteLine(exception.Message); + } + } + /// + /// Will attempt to load missing assembly from either x86 or x64 subdir + /// Required by CefSharp to load the unmanaged dependencies when running using AnyCPU + /// + /// + /// + /// + private static Assembly Resolver(object sender, ResolveEventArgs e) + { + Assembly resolvedAssembly; + string assemblyName; + string archSpecificPath; + + resolvedAssembly = null; + + if (e.Name.StartsWith("CefSharp") == true) + { + //https://github.com/cefsharp/CefSharp/issues/1714 + assemblyName = e.Name.Split(new[] { ',' }, 2)[0] + ".dll"; + archSpecificPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase, Environment.Is64BitProcess ? "x64" : "x86", assemblyName); + + //LoadFile does not load files into the load-from context, and does not resolve dependencies using the load path + resolvedAssembly = File.Exists(archSpecificPath) ? Assembly.LoadFile(archSpecificPath) : null; + } + + return resolvedAssembly; + } + #endregion + } +} diff --git a/CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap.csproj b/CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap.csproj new file mode 100644 index 00000000..38a9a344 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap.csproj @@ -0,0 +1,165 @@ + + + + + + + + + Debug + AnyCPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10} + WinExe + CefSharp.MinimalExample.WpfXBap + CefSharp.MinimalExample.WpfXBap + v4.6.1 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + URL + true + Internet + true + True + true + + + true + publish\ + false + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + AnyCPU + true + false + Off + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + Page1.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + Designer + + + + Designer + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + False + Microsoft .NET Framework 4.6.1 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + + + + + CefSharp.MinimalExample.WpfXBap_TemporaryKey.pfx + + + 5257D40BFE8076154F7FBF6B1CD066E24301F5B4 + + + + + This project references NuGet package(s) that are missing on this computer. Use 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.WpfXBap/CefSharp.MinimalExample.WpfXBap_TemporaryKey.pfx b/CefSharp.MinimalExample.WpfXBap/CefSharp.MinimalExample.WpfXBap_TemporaryKey.pfx new file mode 100644 index 0000000000000000000000000000000000000000..f2721b6de9f2797b4b9198f3c379833ae07f9989 GIT binary patch literal 1648 zcmZWoc{r476#wR%&x|D#+0uxK$TMQTL5wvGX;dQ9G+L%ewkU-rRMZe-gyEuPZkBLW z(jq34u~isa6v~z4T9O(|S+bPeubzABxzGLMocDKr=Xc)syw7tE%)tbMC^XE$7-Hmz z@wE79MHCj5%fV3>q_e29b2L1+PD=P(NYR4tN6fw>$|2y?(vSPLWn zFO6J|gJiQCY9E|!IbRNf*k=$2x_yxJB$bz2aWQa{K-C3v~|em|E$% zx=umu=xA$Ab2|@xVgz?{BmVVqZ!I3aVWuQBZ#XHtAgt21rfSZ?!bWRrMR18Q*|ofB zpPqG%+z~aqib56P80nxeOQ%n3rvCHeh_2|708`d1F?2X9Z)Kc{0jn#eiiV}eqtY)< zM?&1`hN*mfyAF02usc2B0?)$kK@`u8cS7@4GBwxs6fI((Y0Rp@)$wB7XgJsB$W=mP zoKd6i=%=)IwMqTWm%YR$>-~&$%QL8QMOm9obuUR6zJ- z>IdO_-1{h7*|Cztgu9ZIBu4SPmV7XCA#g;ASI>C5aq``q)$26_;~rK%xcq!R$2HdDbs2n*a?1kF_~{kbLRc zD#9x=b@9PG&r1z0rJ=v&F)K`5qD?CQjJqpL+1^aFpHCp`X9+i$D-h{Baue-SgX#BR ziFAQaN|^0NK_65Sl_CGRW~=DfIFgKC#sR-o$F}!UJC@yMiH1A$kNd-f%_7P3r#5$u zZCcaHIy!@u@Qgm-}U1_c$$( zi#FihTe=tqZ6gmqroM2e_g&SUbXDK&^)^&aTra#tG_N?ZS#MQq&PhUX++62rax}|= zeEJEj@^j4P)W{eJLID5(Gk=k)HSg&=V#^2lKz;71h!aQ~rWBhh}OiBMzUvS}5Y(2GU-D$MYD+v;%pJjvl0FK5<|$WG|U+i(Yr9o|Qi z_H#2DOA_6qo>^bd@%Lz1@0cq%?rWRXT_3S0h>o*#6|}$aZD*aRonkQyBrS%mq}>vx zspd7b*XQg$dVqA2v7}14j*)nEG$?a3#bAlLV)1%|?)1_|(rbQe*o6B?QO#TN#m4Sj z?FH$gO4(w!V$1xSZI7|{%*<)hwr)C2_DbEXOtae>Kq(EMbi~;NHCgMhnmW?FK0$Rc zU9hd$E_wGl+$4yfAAHu?A$nZ>QNhVAT3)3+V81#x74?lC*&%&8Hxcfi?^GIi;LPS~ z{R~SHZr&w)Z-|urGMziuzf`SIfR=BIT1B?g&`tN`4SFOcWHAmMyR2+fzU$@tSg~W& z*})}>hms}N$K&fJpKNlRtuA4VeHdVCNXi3Y8(0U%Vq}bPXmA;%nryB2CTcAE+v-7^ mR~)?c2qzg#gj6ptAFxK(-#9I*TB`n6$68~8xZvvdf%+Tt0KGB* literal 0 HcmV?d00001 diff --git a/CefSharp.MinimalExample.WpfXBap/Page1.xaml b/CefSharp.MinimalExample.WpfXBap/Page1.xaml new file mode 100644 index 00000000..d34d9649 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Page1.xaml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/CefSharp.MinimalExample.WpfXBap/Page1.xaml.cs b/CefSharp.MinimalExample.WpfXBap/Page1.xaml.cs new file mode 100644 index 00000000..0f84dd17 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Page1.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace CefSharp.MinimalExample.WpfXBap +{ + /// + /// Interaction logic for Page1.xaml + /// + public partial class Page1 : Page + { + public Page1() + { + InitializeComponent(); + } + } +} diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/AssemblyInfo.cs b/CefSharp.MinimalExample.WpfXBap/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..2aaff87c --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("CefSharp.MinimalExample.WpfXBap")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("CefSharp.MinimalExample.WpfXBap")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +//In order to begin building localizable applications, set +//CultureYouAreCodingWith in your .csproj file +//inside a . For example, if you are using US english +//in your source files, set the to en-US. Then uncomment +//the NeutralResourceLanguage attribute below. Update the "en-US" in +//the line below to match the UICulture setting in the project file. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly:ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] + + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/Resources.Designer.cs b/CefSharp.MinimalExample.WpfXBap/Properties/Resources.Designer.cs new file mode 100644 index 00000000..86e4eb03 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/Resources.Designer.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace CefSharp.MinimalExample.WpfXBap.Properties { + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if ((resourceMan == null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CefSharp.MinimalExample.WpfXBap.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/Resources.resx b/CefSharp.MinimalExample.WpfXBap/Properties/Resources.resx new file mode 100644 index 00000000..af7dbebb --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/Settings.Designer.cs b/CefSharp.MinimalExample.WpfXBap/Properties/Settings.Designer.cs new file mode 100644 index 00000000..3c0c368a --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace CefSharp.MinimalExample.WpfXBap.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/Settings.settings b/CefSharp.MinimalExample.WpfXBap/Properties/Settings.settings new file mode 100644 index 00000000..033d7a5e --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WpfXBap/Properties/app.manifest b/CefSharp.MinimalExample.WpfXBap/Properties/app.manifest new file mode 100644 index 00000000..915e22f3 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/Properties/app.manifest @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.WpfXBap/packages.config b/CefSharp.MinimalExample.WpfXBap/packages.config new file mode 100644 index 00000000..e0a74c78 --- /dev/null +++ b/CefSharp.MinimalExample.WpfXBap/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/CefSharp.MinimalExample.sln b/CefSharp.MinimalExample.sln index 1f0bfc24..38ded8f2 100644 --- a/CefSharp.MinimalExample.sln +++ b/CefSharp.MinimalExample.sln @@ -1,46 +1,73 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2026 +MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CefSharp.MinimalExample.Wpf", "CefSharp.MinimalExample.Wpf\CefSharp.MinimalExample.Wpf.csproj", "{BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CefSharp.MinimalExample.WinForms", "CefSharp.MinimalExample.WinForms\CefSharp.MinimalExample.WinForms.csproj", "{C043FFF7-5F71-4FFC-989A-E09E18548589}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CefSharp.MinimalExample.OffScreen", "CefSharp.MinimalExample.OffScreen\CefSharp.MinimalExample.OffScreen.csproj", "{A4DEB90C-A529-4A93-ACE3-226A39EFCB00}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CefSharp.MinimalExample.WpfXBap", "CefSharp.MinimalExample.WpfXBap\CefSharp.MinimalExample.WpfXBap.csproj", "{EB0C38C3-908F-49DB-A880-BF21581BDC10}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Debug|Any CPU.ActiveCfg = Debug|x86 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Debug|x64.ActiveCfg = Debug|x64 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Debug|x64.Build.0 = Debug|x64 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Debug|x86.ActiveCfg = Debug|x86 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Debug|x86.Build.0 = Debug|x86 + {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Release|Any CPU.ActiveCfg = Release|x86 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Release|x64.ActiveCfg = Release|x64 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Release|x64.Build.0 = Release|x64 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Release|x86.ActiveCfg = Release|x86 {BE4C3AD0-8DA2-4246-8C63-EEEB7DC197BE}.Release|x86.Build.0 = Release|x86 + {C043FFF7-5F71-4FFC-989A-E09E18548589}.Debug|Any CPU.ActiveCfg = Debug|x86 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Debug|x64.ActiveCfg = Debug|x64 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Debug|x64.Build.0 = Debug|x64 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Debug|x86.ActiveCfg = Debug|x86 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Debug|x86.Build.0 = Debug|x86 + {C043FFF7-5F71-4FFC-989A-E09E18548589}.Release|Any CPU.ActiveCfg = Release|x86 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Release|x64.ActiveCfg = Release|x64 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Release|x64.Build.0 = Release|x64 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Release|x86.ActiveCfg = Release|x86 {C043FFF7-5F71-4FFC-989A-E09E18548589}.Release|x86.Build.0 = Release|x86 + {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Debug|Any CPU.ActiveCfg = Debug|x86 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Debug|x64.ActiveCfg = Debug|x64 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Debug|x64.Build.0 = Debug|x64 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Debug|x86.ActiveCfg = Debug|x86 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Debug|x86.Build.0 = Debug|x86 + {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Release|Any CPU.ActiveCfg = Release|x86 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Release|x64.ActiveCfg = Release|x64 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Release|x64.Build.0 = Release|x64 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Release|x86.ActiveCfg = Release|x86 {A4DEB90C-A529-4A93-ACE3-226A39EFCB00}.Release|x86.Build.0 = Release|x86 + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|x64.ActiveCfg = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|x64.Build.0 = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|x86.ActiveCfg = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Debug|x86.Build.0 = Debug|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|Any CPU.Build.0 = Release|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|x64.ActiveCfg = Release|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|x64.Build.0 = Release|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|x86.ActiveCfg = Release|Any CPU + {EB0C38C3-908F-49DB-A880-BF21581BDC10}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3354F2D7-CD4F-4D4D-843F-FD9ACFCF2A8B} + EndGlobalSection EndGlobal