From: Mohamed CHOUCHANE Date: Thu, 7 Dec 2017 00:34:37 +0000 (+0100) Subject: Add Xamarin.Forms.ControlGallery.WPF (#1337) X-Git-Tag: accepted/tizen/5.5/unified/20200421.150457~1283 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f3d347b3e58c9a0ad0f75e7e924dafe7e04fc00;p=platform%2Fcore%2Fcsapi%2Fxsf.git Add Xamarin.Forms.ControlGallery.WPF (#1337) --- diff --git a/Xamarin.Forms.ControlGallery.WPF/App.config b/Xamarin.Forms.ControlGallery.WPF/App.config new file mode 100644 index 0000000..bae5d6d --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Xamarin.Forms.ControlGallery.WPF/App.xaml b/Xamarin.Forms.ControlGallery.WPF/App.xaml new file mode 100644 index 0000000..629e9f3 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/Xamarin.Forms.ControlGallery.WPF/App.xaml.cs b/Xamarin.Forms.ControlGallery.WPF/App.xaml.cs new file mode 100644 index 0000000..e1ccf9c --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/App.xaml.cs @@ -0,0 +1,9 @@ +namespace Xamarin.Forms.ControlGallery.WPF +{ + /// + /// Logique d'interaction pour App.xaml + /// + public partial class App : System.Windows.Application + { + } +} diff --git a/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml b/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml new file mode 100644 index 0000000..3440339 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml @@ -0,0 +1,10 @@ + + + diff --git a/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml.cs b/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml.cs new file mode 100644 index 0000000..7a269ce --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/MainWindow.xaml.cs @@ -0,0 +1,19 @@ +using Xamarin.Forms.Platform.WPF; + +namespace Xamarin.Forms.ControlGallery.WPF +{ + /// + /// Logique d'interaction pour MainWindow.xaml + /// + public partial class MainWindow : FormsApplicationPage + { + public MainWindow() + { + InitializeComponent(); + Xamarin.Forms.Forms.Init(); + FormsMaps.Init(""); + LoadApplication(new Controls.App()); + //LoadApplication(new OpenGLViewApp()); + } + } +} diff --git a/Xamarin.Forms.ControlGallery.WPF/OpenGLViewApp.cs b/Xamarin.Forms.ControlGallery.WPF/OpenGLViewApp.cs new file mode 100644 index 0000000..5fb48a1 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/OpenGLViewApp.cs @@ -0,0 +1,116 @@ +using System; +using OpenTK.Graphics.OpenGL; + +namespace Xamarin.Forms.ControlGallery.WPF +{ + public class OpenGLViewApp : Application + { + public OpenGLViewApp() + { + MainPage = new OpenGLViewSample(); + } + } + + public class OpenGLViewSample : ContentPage + { + private bool _initGl = false; + private int _viewportWidth; + private int _viewportHeight; + private uint _mProgramHandle; + private OpenGLView _openGLView = null; + + public OpenGLViewSample() + { + Title = "OpenGLView Sample"; + + var titleLabel = new Label + { + Text = "OpenGLView", + FontSize = 36 + }; + + _openGLView = new OpenGLView + { + HeightRequest = 300, + WidthRequest = 300, + HasRenderLoop = false + }; + + _openGLView.OnDisplay = r => + { + if (!_initGl) + { + double width_in_pixels = 300; + double height_in_pixels = 300; + + InitGl((int)width_in_pixels, (int)height_in_pixels); + } + + Render(); + }; + + var stack = new StackLayout + { + Padding = new Size(12, 12), + Children = { titleLabel, _openGLView } + }; + + Content = stack; + } + + void InitGl(int width, int height) + { + _viewportHeight = width; + _viewportWidth = height; + + _mProgramHandle = (uint)GL.CreateProgram(); + if (_mProgramHandle == 0) + throw new InvalidOperationException("Unable to create program"); + + GL.BindAttribLocation(_mProgramHandle, 0, "vPosition"); + GL.LinkProgram(_mProgramHandle); + + GL.Viewport(0, 0, _viewportWidth, _viewportHeight); + + GL.UseProgram(_mProgramHandle); + + _initGl = true; + } + + + void Render() + { + GL.ClearColor(0, 0, 0, 0); + GL.Clear(ClearBufferMask.ColorBufferBit); + GL.Color3(1.0f, 0.85f, 0.35f); + GL.Begin(BeginMode.Triangles); + GL.Vertex3(0.0, 0.6, 0.0); + GL.Vertex3(-0.2, -0.3, 0.0); + GL.Vertex3(0.2, -0.3, 0.0); + GL.End(); + GL.Flush(); + } + } + + public class ReferenceTime + { + private static DateTime reference_time; + private static bool reference_time_set = false; + + public static double GetTimeFromReferenceMs() + { + if (!reference_time_set) + { + reference_time = DateTime.Now; + reference_time_set = true; + + return 0.0; + } + + DateTime actual_time = DateTime.Now; + TimeSpan ts = new TimeSpan(actual_time.Ticks - reference_time.Ticks); + + return ts.TotalMilliseconds; + } + } +} \ No newline at end of file diff --git a/Xamarin.Forms.ControlGallery.WPF/OpenTK.dll.config b/Xamarin.Forms.ControlGallery.WPF/OpenTK.dll.config new file mode 100644 index 0000000..7098d39 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/OpenTK.dll.config @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Xamarin.Forms.ControlGallery.WPF/Properties/AssemblyInfo.cs b/Xamarin.Forms.ControlGallery.WPF/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5aabe3a --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("Xamarin.Forms.ControlGallery.WPF")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Xamarin.Forms.ControlGallery.WPF")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +//Pour commencer à générer des applications localisables, définissez +//CultureUtiliséePourCoder dans votre fichier .csproj +//dans . Par exemple, si vous utilisez le français +//dans vos fichiers sources, définissez à fr-FR. Puis, supprimez les marques de commentaire de +//l'attribut NeutralResourceLanguage ci-dessous. Mettez à jour "fr-FR" dans +//la ligne ci-après pour qu'elle corresponde au paramètre UICulture du fichier projet. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //où se trouvent les dictionnaires de ressources spécifiques à un thème + //(utilisé si une ressource est introuvable dans la page, + // ou dictionnaires de ressources de l'application) + ResourceDictionaryLocation.SourceAssembly //où se trouve le dictionnaire de ressources générique + //(utilisé si une ressource est introuvable dans la page, + // dans l'application ou dans l'un des dictionnaires de ressources spécifiques à un thème) +)] + + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Xamarin.Forms.ControlGallery.WPF/Properties/Resources.Designer.cs b/Xamarin.Forms.ControlGallery.WPF/Properties/Resources.Designer.cs new file mode 100644 index 0000000..7159ffb --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace Xamarin.Forms.ControlGallery.WPF.Properties { + using System; + + + /// + /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + /// + // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + // à l'aide d'un outil, tel que ResGen ou Visual Studio. + // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + // avec l'option /str ou régénérez votre projet VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.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() { + } + + /// + /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Xamarin.Forms.ControlGallery.WPF.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Remplace la propriété CurrentUICulture du thread actuel pour toutes + /// les recherches de ressources à l'aide de cette classe de ressource fortement typée. + /// + [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/Xamarin.Forms.ControlGallery.WPF/Properties/Resources.resx b/Xamarin.Forms.ControlGallery.WPF/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/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/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.Designer.cs b/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.Designer.cs new file mode 100644 index 0000000..45c87dc --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.Designer.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace Xamarin.Forms.ControlGallery.WPF.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.3.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/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.settings b/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.settings new file mode 100644 index 0000000..033d7a5 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Xamarin.Forms.ControlGallery.WPF/StringProvider.cs b/Xamarin.Forms.ControlGallery.WPF/StringProvider.cs new file mode 100644 index 0000000..f0d8bed --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/StringProvider.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Xamarin.Forms; +using Xamarin.Forms.ControlGallery.WPF; +using Xamarin.Forms.Controls; + +[assembly: Dependency(typeof(StringProvider))] +namespace Xamarin.Forms.ControlGallery.WPF +{ + public class StringProvider : IStringProvider + { + public string CoreGalleryTitle + { + get { return "WPF Core Gallery"; } + } + } +} diff --git a/Xamarin.Forms.ControlGallery.WPF/Xamarin.Forms.ControlGallery.WPF.csproj b/Xamarin.Forms.ControlGallery.WPF/Xamarin.Forms.ControlGallery.WPF.csproj new file mode 100644 index 0000000..4382117 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/Xamarin.Forms.ControlGallery.WPF.csproj @@ -0,0 +1,141 @@ + + + + + Debug + AnyCPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF} + WinExe + Xamarin.Forms.ControlGallery.WPF + Xamarin.Forms.ControlGallery.WPF + v4.6.1 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + true + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + true + + + + ..\packages\Microsoft.Maps.MapControl.WPF.1.0.0.3\lib\net40-Client\Microsoft.Maps.MapControl.WPF.dll + + + ..\packages\OpenTK.3.0.0-pre\lib\net20\OpenTK.dll + True + + + ..\packages\OpenTK.GLControl.3.0.0-pre\lib\net20\OpenTK.GLControl.dll + True + + + + + + + + + + + 4.0 + + + + + + ..\packages\WpfLightToolkit.1.0.1\lib\net45\WpfLightToolkit.dll + + + + + MSBuild:Compile + Designer + + + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + Designer + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + + {cb9c96ce-125c-4a68-b6a1-c3ff1fbf93e1} + Xamarin.Forms.Controls + + + {57b8b73d-c3b5-4c42-869e-7b2f17d354ac} + Xamarin.Forms.Core + + + {89b0db73-a32e-447c-9390-a2a59d89b2e4} + Xamarin.Forms.Maps.WPF + + + {7d13bac2-c6a4-416a-b07e-c169b199e52b} + Xamarin.Forms.Maps + + + {140bc260-8b15-4d3a-b1b0-ddd8072918cc} + Xamarin.Forms.Platform.WPF + + + + \ No newline at end of file diff --git a/Xamarin.Forms.ControlGallery.WPF/packages.config b/Xamarin.Forms.ControlGallery.WPF/packages.config new file mode 100644 index 0000000..9177944 --- /dev/null +++ b/Xamarin.Forms.ControlGallery.WPF/packages.config @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Xamarin.Forms.sln b/Xamarin.Forms.sln index 9474109..f196260 100644 --- a/Xamarin.Forms.sln +++ b/Xamarin.Forms.sln @@ -143,6 +143,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin.Forms.Platform.WPF" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin.Forms.Maps.WPF", "Xamarin.Forms.Maps.WPF\Xamarin.Forms.Maps.WPF.csproj", "{89B0DB73-A32E-447C-9390-A2A59D89B2E4}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin.Forms.ControlGallery.WPF", "Xamarin.Forms.ControlGallery.WPF\Xamarin.Forms.ControlGallery.WPF.csproj", "{411B960D-6D30-4079-83B2-ABB9987D2EDF}" +EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution Xamarin.Forms.Controls.Issues\Xamarin.Forms.Controls.Issues.Shared\Xamarin.Forms.Controls.Issues.Shared.projitems*{0a39a74b-6f7a-4d41-84f2-b0ccdce899df}*SharedItemsImports = 4 @@ -2626,6 +2628,58 @@ Global {89B0DB73-A32E-447C-9390-A2A59D89B2E4}.Release|x64.Build.0 = Release|Any CPU {89B0DB73-A32E-447C-9390-A2A59D89B2E4}.Release|x86.ActiveCfg = Release|Any CPU {89B0DB73-A32E-447C-9390-A2A59D89B2E4}.Release|x86.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|ARM.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|Templates.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|Templates.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|x64.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Ad-Hoc|x86.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|Any CPU.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|ARM.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|ARM.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|iPhone.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|Templates.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|Templates.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|x64.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|x64.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|x86.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.AppStore|x86.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|ARM.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|ARM.Build.0 = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|Templates.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|Templates.Build.0 = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|x64.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|x64.Build.0 = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|x86.ActiveCfg = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Debug|x86.Build.0 = Debug|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|Any CPU.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|ARM.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|ARM.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|iPhone.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|Templates.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|Templates.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|x64.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|x64.Build.0 = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|x86.ActiveCfg = Release|Any CPU + {411B960D-6D30-4079-83B2-ABB9987D2EDF}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -2684,6 +2738,7 @@ Global {03A51E5B-0A1E-41F0-AAE3-4B19406F7340} = {4F5E2D21-17F6-4A42-B8FB-D03D82E24EC8} {140BC260-8B15-4D3A-B1B0-DDD8072918CC} = {29AC50BF-B4FB-450B-9386-0C5AD4B84226} {89B0DB73-A32E-447C-9390-A2A59D89B2E4} = {132FB9A4-613F-44CE-95D5-758D32D231DD} + {411B960D-6D30-4079-83B2-ABB9987D2EDF} = {4F5E2D21-17F6-4A42-B8FB-D03D82E24EC8} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {650AE971-2F29-46A8-822C-FB4FCDC6A9A0}