diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/Microsoft.Band.Portable.Sample.Phone.csproj b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/Microsoft.Band.Portable.Sample.Phone.csproj
index 0e22caf..d10d5e0 100644
--- a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/Microsoft.Band.Portable.Sample.Phone.csproj
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/Microsoft.Band.Portable.Sample.Phone.csproj
@@ -14,7 +14,7 @@
12
512
{76F1466A-8B6D-4E39-A767-685A06062A39};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 2c0de8eb
+ 2691e5a1
AnyCPU
@@ -155,16 +155,16 @@
True
- ..\packages\Xamarin.Forms.Windows.1.4.2.6355\lib\wpa81\Xamarin.Forms.Core.dll
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\wpa81\Xamarin.Forms.Core.dll
- ..\packages\Xamarin.Forms.Windows.1.4.2.6355\lib\wpa81\Xamarin.Forms.Platform.WinRT.dll
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\wpa81\Xamarin.Forms.Platform.WinRT.dll
- ..\packages\Xamarin.Forms.Windows.1.4.2.6355\lib\wpa81\Xamarin.Forms.Platform.WinRT.Phone.dll
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\wpa81\Xamarin.Forms.Platform.WinRT.Phone.dll
- ..\packages\Xamarin.Forms.Windows.1.4.2.6355\lib\wpa81\Xamarin.Forms.Xaml.dll
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\wpa81\Xamarin.Forms.Xaml.dll
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/packages.config b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/packages.config
index 302a37d..b8d43dd 100644
--- a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/packages.config
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Phone/packages.config
@@ -4,6 +4,5 @@
-
\ No newline at end of file
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml
new file mode 100644
index 0000000..a5af363
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml
@@ -0,0 +1,7 @@
+
+
+
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml.cs b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml.cs
new file mode 100644
index 0000000..a31ce4b
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/App.xaml.cs
@@ -0,0 +1,111 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.ApplicationModel;
+using Windows.ApplicationModel.Activation;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+using Windows.UI.Xaml;
+using Windows.UI.Xaml.Controls;
+using Windows.UI.Xaml.Controls.Primitives;
+using Windows.UI.Xaml.Data;
+using Windows.UI.Xaml.Input;
+using Windows.UI.Xaml.Media;
+using Windows.UI.Xaml.Navigation;
+
+// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=234227
+
+namespace Microsoft.Band.Portable.Sample.Windows
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ sealed partial class App : Application
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ this.Suspending += OnSuspending;
+ }
+
+ ///
+ /// Invoked when the application is launched normally by the end user. Other entry points
+ /// will be used such as when the application is launched to open a specific file.
+ ///
+ /// Details about the launch request and process.
+ protected override void OnLaunched(LaunchActivatedEventArgs e)
+ {
+
+#if DEBUG
+ if (System.Diagnostics.Debugger.IsAttached)
+ {
+ this.DebugSettings.EnableFrameRateCounter = true;
+ }
+#endif
+
+ Frame rootFrame = Window.Current.Content as Frame;
+
+ // Do not repeat app initialization when the Window already has content,
+ // just ensure that the window is active
+ if (rootFrame == null)
+ {
+ // Create a Frame to act as the navigation context and navigate to the first page
+ rootFrame = new Frame();
+ // Set the default language
+ rootFrame.Language = global::Windows.Globalization.ApplicationLanguages.Languages[0];
+
+ rootFrame.NavigationFailed += OnNavigationFailed;
+
+ Xamarin.Forms.Forms.Init(e);
+
+ if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
+ {
+ //TODO: Load state from previously suspended application
+ }
+
+ // Place the frame in the current Window
+ Window.Current.Content = rootFrame;
+ }
+
+ if (rootFrame.Content == null)
+ {
+ // When the navigation stack isn't restored navigate to the first page,
+ // configuring the new page by passing required information as a navigation
+ // parameter
+ rootFrame.Navigate(typeof(MainPage), e.Arguments);
+ }
+ // Ensure the current window is active
+ Window.Current.Activate();
+ }
+
+ ///
+ /// Invoked when Navigation to a certain page fails
+ ///
+ /// The Frame which failed navigation
+ /// Details about the navigation failure
+ void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
+ {
+ throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
+ }
+
+ ///
+ /// Invoked when application execution is being suspended. Application state is saved
+ /// without knowing whether the application will be terminated or resumed with the contents
+ /// of memory still intact.
+ ///
+ /// The source of the suspend request.
+ /// Details about the suspend request.
+ private void OnSuspending(object sender, SuspendingEventArgs e)
+ {
+ var deferral = e.SuspendingOperation.GetDeferral();
+ //TODO: Save application state and stop any background activity
+ deferral.Complete();
+ }
+ }
+}
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Add.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Add.png
new file mode 100644
index 0000000..1e18b01
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Add.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Cancel.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Cancel.png
new file mode 100644
index 0000000..988eaea
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Cancel.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Done.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Done.png
new file mode 100644
index 0000000..a5ecf9b
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Done.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Remove.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Remove.png
new file mode 100644
index 0000000..11aad3f
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Icons/Remove.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Logo.scale-100.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Logo.scale-100.png
new file mode 100644
index 0000000..e26771c
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/Logo.scale-100.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SmallLogo.scale-100.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SmallLogo.scale-100.png
new file mode 100644
index 0000000..1eb0d9d
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SmallLogo.scale-100.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SplashScreen.scale-100.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SplashScreen.scale-100.png
new file mode 100644
index 0000000..c951e03
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/SplashScreen.scale-100.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/StoreLogo.scale-100.png b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/StoreLogo.scale-100.png
new file mode 100644
index 0000000..dcb6727
Binary files /dev/null and b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Assets/StoreLogo.scale-100.png differ
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml
new file mode 100644
index 0000000..bc69bd5
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml.cs b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml.cs
new file mode 100644
index 0000000..f6a63d6
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/MainPage.xaml.cs
@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using System.Runtime.InteropServices.WindowsRuntime;
+using Windows.Foundation;
+using Windows.Foundation.Collections;
+using Windows.UI.Xaml;
+using Windows.UI.Xaml.Controls;
+using Windows.UI.Xaml.Controls.Primitives;
+using Windows.UI.Xaml.Data;
+using Windows.UI.Xaml.Input;
+using Windows.UI.Xaml.Media;
+using Windows.UI.Xaml.Navigation;
+using Xamarin.Forms.Platform.WinRT;
+
+// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
+
+namespace Microsoft.Band.Portable.Sample.Windows
+{
+ ///
+ /// An empty page that can be used on its own or navigated to within a Frame.
+ ///
+ public sealed partial class MainPage : WindowsPage
+ {
+ public MainPage()
+ {
+ this.InitializeComponent();
+
+ this.LoadApplication(new Microsoft.Band.Portable.Sample.App());
+ }
+ }
+}
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Microsoft.Band.Portable.Sample.Windows.csproj b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Microsoft.Band.Portable.Sample.Windows.csproj
new file mode 100644
index 0000000..fa7094b
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Microsoft.Band.Portable.Sample.Windows.csproj
@@ -0,0 +1,223 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}
+ AppContainerExe
+ Properties
+ Microsoft.Band.Portable.Sample.Windows
+ Microsoft.Band.Portable.Sample.Windows
+ en-US
+ 8.1
+ 12
+ 512
+ {BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ Microsoft.Band.Portable.Sample.Windows_TemporaryKey.pfx
+ ba033201
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE;NETFX_CORE;WINDOWS_APP
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE;NETFX_CORE;WINDOWS_APP
+ prompt
+ 4
+
+
+ true
+ bin\ARM\Debug\
+ DEBUG;TRACE;NETFX_CORE;WINDOWS_APP
+ ;2008
+ full
+ ARM
+ false
+ prompt
+ true
+
+
+ bin\ARM\Release\
+ TRACE;NETFX_CORE;WINDOWS_APP
+ true
+ ;2008
+ pdbonly
+ ARM
+ false
+ prompt
+ true
+
+
+ true
+ bin\x64\Debug\
+ DEBUG;TRACE;NETFX_CORE;WINDOWS_APP
+ ;2008
+ full
+ x64
+ false
+ prompt
+ true
+
+
+ bin\x64\Release\
+ TRACE;NETFX_CORE;WINDOWS_APP
+ true
+ ;2008
+ pdbonly
+ x64
+ false
+ prompt
+ true
+
+
+ true
+ bin\x86\Debug\
+ DEBUG;TRACE;NETFX_CORE;WINDOWS_APP
+ ;2008
+ full
+ x86
+ false
+ prompt
+ true
+
+
+ bin\x86\Release\
+ TRACE;NETFX_CORE;WINDOWS_APP
+ true
+ ;2008
+ pdbonly
+ x86
+ false
+ prompt
+ true
+
+
+
+ App.xaml
+
+
+ MainPage.xaml
+
+
+
+
+
+ Designer
+
+
+
+
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+ PreserveNewest
+
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+
+
+ ..\packages\Xam.Plugins.Notifier.1.0.1\lib\win8\EdSnider.Plugins.Core.dll
+ True
+
+
+ ..\packages\Xam.Plugins.Notifier.1.0.1\lib\win8\EdSnider.Plugins.Notifier.dll
+ True
+
+
+ ..\packages\Xam.Plugin.Media.1.0.0\lib\win8\Media.Plugin.dll
+ True
+
+
+ ..\packages\Xam.Plugin.Media.1.0.0\lib\win8\Media.Plugin.Abstractions.dll
+ True
+
+
+ ..\packages\Microsoft.Band.1.3.10417\lib\netcore451\Microsoft.Band.dll
+ True
+
+
+ ..\packages\Xamarin.Microsoft.Band.1.3.4.1\lib\win8\Microsoft.Band.Portable.dll
+ True
+
+
+ ..\packages\Microsoft.Band.1.3.10417\lib\netcore451\Microsoft.Band.Store.dll
+ True
+
+
+ ..\packages\Microsoft.Band.1.3.10417\lib\netcore451\Microsoft.Band.Windows.dll
+ True
+
+
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\win81\Xamarin.Forms.Core.dll
+ True
+
+
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\win81\Xamarin.Forms.Platform.WinRT.dll
+ True
+
+
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\win81\Xamarin.Forms.Platform.WinRT.Tablet.dll
+ True
+
+
+ ..\packages\Xamarin.Forms.1.4.2.6359\lib\win81\Xamarin.Forms.Xaml.dll
+ True
+
+
+
+
+ {0cca28ef-7238-4a29-8cce-5e91936d160f}
+ Microsoft.Band.Portable.Sample
+
+
+
+ 12.0
+
+
+
+
+
+ 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/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Package.appxmanifest b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Package.appxmanifest
new file mode 100644
index 0000000..8b0c7ae
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Package.appxmanifest
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+ Microsoft.Band.Portable.Sample.Windows
+ mattl
+ Assets\StoreLogo.png
+
+
+
+ 6.3.0
+ 6.3.0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Properties/AssemblyInfo.cs b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..3200f21
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/Properties/AssemblyInfo.cs
@@ -0,0 +1,29 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 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("Microsoft.Band.Portable.Sample.Windows")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Microsoft.Band.Portable.Sample.Windows")]
+[assembly: AssemblyCopyright("Copyright © 2015")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// 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")]
+[assembly: ComVisible(false)]
\ No newline at end of file
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/packages.config b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/packages.config
new file mode 100644
index 0000000..8a7c759
--- /dev/null
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.Windows/packages.config
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.sln b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.sln
index d17d1ae..b5bb442 100644
--- a/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.sln
+++ b/Demos/Microsoft.Band.Portable.Sample/Microsoft.Band.Portable.Sample.sln
@@ -11,27 +11,33 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Band.Portable.Sam
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Band.Portable.Sample.Phone", "Microsoft.Band.Portable.Sample.Phone\Microsoft.Band.Portable.Sample.Phone.csproj", "{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Band.Portable.Sample.Windows", "Microsoft.Band.Portable.Sample.Windows\Microsoft.Band.Portable.Sample.Windows.csproj", "{8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
Ad-Hoc|ARM = Ad-Hoc|ARM
Ad-Hoc|iPhone = Ad-Hoc|iPhone
Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
+ Ad-Hoc|x64 = Ad-Hoc|x64
Ad-Hoc|x86 = Ad-Hoc|x86
AppStore|Any CPU = AppStore|Any CPU
AppStore|ARM = AppStore|ARM
AppStore|iPhone = AppStore|iPhone
AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
+ AppStore|x64 = AppStore|x64
AppStore|x86 = AppStore|x86
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|iPhone = Debug|iPhone
Debug|iPhoneSimulator = Debug|iPhoneSimulator
+ Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|iPhone = Release|iPhone
Release|iPhoneSimulator = Release|iPhoneSimulator
+ Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
@@ -43,6 +49,7 @@ Global
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
+ {0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
@@ -53,6 +60,7 @@ Global
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|iPhone.Build.0 = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
+ {0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|x64.ActiveCfg = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|x86.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.AppStore|x86.Build.0 = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
@@ -63,6 +71,7 @@ Global
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|iPhone.Build.0 = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
+ {0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|x64.ActiveCfg = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|x86.ActiveCfg = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Debug|x86.Build.0 = Debug|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -73,6 +82,7 @@ Global
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|iPhone.Build.0 = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
+ {0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|x64.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|x86.ActiveCfg = Release|Any CPU
{0CCA28EF-7238-4A29-8CCE-5E91936D160F}.Release|x86.Build.0 = Release|Any CPU
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
@@ -83,6 +93,7 @@ Global
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
+ {E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Ad-Hoc|x86.Build.0 = Ad-Hoc|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
@@ -93,6 +104,7 @@ Global
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|iPhone.Build.0 = AppStore|iPhone
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
+ {E6214404-101F-472F-8138-9F8AA893D876}.AppStore|x64.ActiveCfg = AppStore|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|x86.ActiveCfg = AppStore|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.AppStore|x86.Build.0 = AppStore|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|Any CPU.ActiveCfg = Debug|iPhone
@@ -103,6 +115,7 @@ Global
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|iPhone.Build.0 = Debug|iPhone
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
+ {E6214404-101F-472F-8138-9F8AA893D876}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Debug|x86.Build.0 = Debug|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Release|Any CPU.ActiveCfg = Release|iPhone
@@ -113,6 +126,7 @@ Global
{E6214404-101F-472F-8138-9F8AA893D876}.Release|iPhone.Build.0 = Release|iPhone
{E6214404-101F-472F-8138-9F8AA893D876}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
+ {E6214404-101F-472F-8138-9F8AA893D876}.Release|x64.ActiveCfg = Release|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Release|x86.ActiveCfg = Release|iPhoneSimulator
{E6214404-101F-472F-8138-9F8AA893D876}.Release|x86.Build.0 = Release|iPhoneSimulator
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
@@ -127,6 +141,7 @@ Global
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
@@ -142,6 +157,7 @@ Global
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|x64.ActiveCfg = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|x86.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|x86.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.AppStore|x86.Deploy.0 = Release|Any CPU
@@ -157,6 +173,7 @@ Global
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|x64.ActiveCfg = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|x86.ActiveCfg = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|x86.Build.0 = Debug|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Debug|x86.Deploy.0 = Debug|Any CPU
@@ -172,6 +189,7 @@ Global
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|x64.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|x86.ActiveCfg = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|x86.Build.0 = Release|Any CPU
{836152C1-7EC8-4074-ABFB-3E3D56D03321}.Release|x86.Deploy.0 = Release|Any CPU
@@ -187,6 +205,7 @@ Global
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|x86.ActiveCfg = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|x86.Build.0 = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Ad-Hoc|x86.Deploy.0 = Release|x86
@@ -202,6 +221,7 @@ Global
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|x64.ActiveCfg = Debug|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|x86.ActiveCfg = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|x86.Build.0 = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.AppStore|x86.Deploy.0 = Release|x86
@@ -217,6 +237,7 @@ Global
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
+ {C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|x64.ActiveCfg = Debug|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|x86.ActiveCfg = Debug|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|x86.Build.0 = Debug|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Debug|x86.Deploy.0 = Debug|x86
@@ -232,9 +253,66 @@ Global
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
+ {C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|x64.ActiveCfg = Release|Any CPU
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|x86.ActiveCfg = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|x86.Build.0 = Release|x86
{C2A6BFE2-A495-41D1-8771-B0D8BDF4C99E}.Release|x86.Deploy.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|ARM.Build.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x64.ActiveCfg = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x64.Build.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x64.Deploy.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x86.ActiveCfg = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x86.Build.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Ad-Hoc|x86.Deploy.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|Any CPU.Build.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|ARM.ActiveCfg = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|ARM.Build.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|ARM.Deploy.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|iPhone.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x64.ActiveCfg = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x64.Build.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x64.Deploy.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x86.ActiveCfg = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x86.Build.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.AppStore|x86.Deploy.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|ARM.ActiveCfg = Debug|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|ARM.Build.0 = Debug|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|ARM.Deploy.0 = Debug|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|iPhone.ActiveCfg = Debug|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x64.ActiveCfg = Debug|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x64.Build.0 = Debug|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x64.Deploy.0 = Debug|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x86.ActiveCfg = Debug|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x86.Build.0 = Debug|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Debug|x86.Deploy.0 = Debug|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|ARM.ActiveCfg = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|ARM.Build.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|ARM.Deploy.0 = Release|ARM
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|iPhone.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x64.ActiveCfg = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x64.Build.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x64.Deploy.0 = Release|x64
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x86.ActiveCfg = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x86.Build.0 = Release|x86
+ {8AC5D2D8-CC9D-456E-9EE5-CD394EDF1D8B}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE