diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml deleted file mode 100644 index 18378b5a..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml.cs b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml.cs deleted file mode 100644 index ee246097..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/App.xaml.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace Setup.Forms.WinPhone -{ - public partial class App - { - public App() - { - InitializeComponent(); - } - } -} diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/AlignmentGrid.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/AlignmentGrid.png deleted file mode 100644 index f7d2e978..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/AlignmentGrid.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/ApplicationIcon.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/ApplicationIcon.png deleted file mode 100644 index d2b5c952..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/ApplicationIcon.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileLarge.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileLarge.png deleted file mode 100644 index 8856d9a9..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileLarge.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileMedium.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileMedium.png deleted file mode 100644 index baab0030..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileMedium.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileSmall.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileSmall.png deleted file mode 100644 index d44d803a..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/FlipCycleTileSmall.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileMediumLarge.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileMediumLarge.png deleted file mode 100644 index 2c904389..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileMediumLarge.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png deleted file mode 100644 index 76d82e0f..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Assets/Tiles/IconicTileSmall.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Bootstrapper.cs b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Bootstrapper.cs deleted file mode 100644 index 28ab4172..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Bootstrapper.cs +++ /dev/null @@ -1,49 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Reflection; -using Caliburn.Micro; -using Setup.Forms.ViewModels; - -namespace Setup.Forms.WinPhone -{ - public class Bootstrapper : PhoneBootstrapperBase - { - private PhoneContainer container; - - public Bootstrapper() - { - Initialize(); - } - - protected override void Configure() - { - container = new PhoneContainer(); - container.RegisterPhoneServices(RootFrame); - container.Singleton(); - } - - protected override IEnumerable SelectAssemblies() - { - return new[] - { - GetType().Assembly, - typeof (HomeViewModel).Assembly - }; - } - - protected override void BuildUp(object instance) - { - container.BuildUp(instance); - } - - protected override IEnumerable GetAllInstances(Type service) - { - return container.GetAllInstances(service); - } - - protected override object GetInstance(Type service, string key) - { - return container.GetInstance(service, key); - } - } -} diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml deleted file mode 100644 index 78af32a6..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml +++ /dev/null @@ -1,16 +0,0 @@ - - diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml.cs b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml.cs deleted file mode 100644 index 1a59777f..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/MainPage.xaml.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using Caliburn.Micro; -using Microsoft.Phone.Controls; - -namespace Setup.Forms.WinPhone -{ - public partial class MainPage - { - public MainPage() - { - InitializeComponent(); - SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape; - - Xamarin.Forms.Forms.Init(); - LoadApplication(IoC.Get()); - } - } -} diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AppManifest.xml b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AppManifest.xml deleted file mode 100644 index 6712a117..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AppManifest.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AssemblyInfo.cs b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AssemblyInfo.cs deleted file mode 100644 index 1556d9d9..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; -using System.Resources; - -// 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("Setup.Forms.WinPhone")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Setup.Forms.WinPhone")] -[assembly: AssemblyCopyright("Copyright © 2014")] -[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)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("65077432-0c92-466b-b68d-911a8ec84f1d")] - -// 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 Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: NeutralResourcesLanguageAttribute("en-US")] diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/WMAppManifest.xml b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/WMAppManifest.xml deleted file mode 100644 index c7f60133..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Properties/WMAppManifest.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - Assets\ApplicationIcon.png - - - - - - - - - - - - - - Assets\Tiles\FlipCycleTileSmall.png - 0 - Assets\Tiles\FlipCycleTileMedium.png - Setup.Forms.WinPhone - - - - - - - - - - - - - - - diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Setup.Forms.WinPhone.csproj b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Setup.Forms.WinPhone.csproj deleted file mode 100644 index 28275dac..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Setup.Forms.WinPhone.csproj +++ /dev/null @@ -1,214 +0,0 @@ - - - - Debug - AnyCPU - 10.0.20506 - 2.0 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F} - {C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} - Library - Properties - Setup.Forms.WinPhone - Setup.Forms.WinPhone - WindowsPhone - v8.0 - $(TargetFrameworkVersion) - true - - - true - true - PhoneApp1_$(Configuration)_$(Platform).xap - Properties\AppManifest.xml - Setup.Forms.WinPhone.App - true - 11.0 - true - - - - - true - full - false - Bin\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - true - full - false - Bin\x86\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\x86\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - true - full - false - Bin\ARM\Debug - DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - pdbonly - true - Bin\ARM\Release - TRACE;SILVERLIGHT;WINDOWS_PHONE - true - true - prompt - 4 - - - - App.xaml - - - - MainPage.xaml - - - - - - Designer - MSBuild:Compile - - - Designer - MSBuild:Compile - - - - - - - Designer - - - - - PreserveNewest - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - - - - - - Setup.Forms - - - - - ..\..\packages\Caliburn.Micro.Core.3.0.3\lib\portable-net45+win8+wp8+wpa81+MonoAndroid10+Xamarin.iOS10+MonoTouch10+uap10.0\Caliburn.Micro.dll - True - - - ..\..\packages\Caliburn.Micro.3.0.3\lib\wp8\Caliburn.Micro.Platform.dll - True - - - ..\..\packages\Caliburn.Micro.3.0.3\lib\wp8\Caliburn.Micro.Platform.Core.dll - True - - - ..\..\packages\Caliburn.Micro.Xamarin.Forms.3.0.3\lib\portable-net45+win8+wp8+wpa81+MonoAndroid10+Xamarin.iOS10+MonoTouch10\Caliburn.Micro.Platform.Xamarin.Forms.dll - True - - - ..\..\packages\WPtoolkit.4.2013.08.16\lib\wp8\Microsoft.Phone.Controls.Toolkit.dll - True - - - ..\..\packages\Caliburn.Micro.3.0.3\lib\wp8\System.Windows.Interactivity.dll - True - - - ..\..\packages\Xamarin.Forms.2.0.1.6505\lib\WP80\Xamarin.Forms.Core.dll - True - - - ..\..\packages\Xamarin.Forms.2.0.1.6505\lib\WP80\Xamarin.Forms.Platform.dll - True - - - ..\..\packages\Xamarin.Forms.2.0.1.6505\lib\WP80\Xamarin.Forms.Platform.WP8.dll - True - - - ..\..\packages\Xamarin.Forms.2.0.1.6505\lib\WP80\Xamarin.Forms.Xaml.dll - True - - - - - - - - - - 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/samples/setup/Setup.Forms/Setup.Forms.WinPhone/SplashScreenImage.jpg b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/SplashScreenImage.jpg deleted file mode 100644 index 666f7c53..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/SplashScreenImage.jpg and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Add.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Add.png deleted file mode 100644 index 4b524d6f..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Add.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png deleted file mode 100644 index 4dd724f0..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Check.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Check.png deleted file mode 100644 index 7a074666..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Check.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Delete.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Delete.png deleted file mode 100644 index 95bb16da..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Delete.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Select.png b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Select.png deleted file mode 100644 index 995deaaa..00000000 Binary files a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/Toolkit.Content/ApplicationBar.Select.png and /dev/null differ diff --git a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/packages.config b/samples/setup/Setup.Forms/Setup.Forms.WinPhone/packages.config deleted file mode 100644 index 362a5063..00000000 --- a/samples/setup/Setup.Forms/Setup.Forms.WinPhone/packages.config +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/samples/setup/Setup.sln b/samples/setup/Setup.sln index da9bc479..d5182412 100644 --- a/samples/setup/Setup.sln +++ b/samples/setup/Setup.sln @@ -19,8 +19,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Setup.Forms.Droid", "Setup. EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Setup.Forms.iOS", "Setup.Forms\Setup.Forms.iOS\Setup.Forms.iOS.csproj", "{275CD363-BA8C-4B0E-9ED7-18B72A335F0B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Setup.Forms.WinPhone", "Setup.Forms\Setup.Forms.WinPhone\Setup.Forms.WinPhone.csproj", "{47D34C7D-BB8F-422B-B72B-31D2F5185E0F}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Setup.Forms", "Setup.Forms\Setup.Forms\Setup.Forms.csproj", "{6FDF7898-5AE9-4D43-BEE1-985D9289060D}" EndProject Global @@ -367,78 +365,6 @@ Global {275CD363-BA8C-4B0E-9ED7-18B72A335F0B}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator {275CD363-BA8C-4B0E-9ED7-18B72A335F0B}.Release|x64.ActiveCfg = Release|iPhone {275CD363-BA8C-4B0E-9ED7-18B72A335F0B}.Release|x86.ActiveCfg = Release|iPhone - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|ARM.ActiveCfg = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|ARM.Build.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|ARM.Deploy.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x64.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x86.ActiveCfg = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x86.Build.0 = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Ad-Hoc|x86.Deploy.0 = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|Any CPU.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|Any CPU.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|ARM.ActiveCfg = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|ARM.Build.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|ARM.Deploy.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhone.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhone.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x64.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x64.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x64.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x86.ActiveCfg = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x86.Build.0 = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.AppStore|x86.Deploy.0 = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|ARM.ActiveCfg = Debug|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|ARM.Build.0 = Debug|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|ARM.Deploy.0 = Debug|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhone.Build.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhone.Deploy.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x64.ActiveCfg = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x64.Build.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x64.Deploy.0 = Debug|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x86.ActiveCfg = Debug|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x86.Build.0 = Debug|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Debug|x86.Deploy.0 = Debug|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|Any CPU.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|Any CPU.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|ARM.ActiveCfg = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|ARM.Build.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|ARM.Deploy.0 = Release|ARM - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhone.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhone.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhone.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhoneSimulator.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x64.ActiveCfg = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x64.Build.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x64.Deploy.0 = Release|Any CPU - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x86.ActiveCfg = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x86.Build.0 = Release|x86 - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F}.Release|x86.Deploy.0 = Release|x86 {6FDF7898-5AE9-4D43-BEE1-985D9289060D}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU {6FDF7898-5AE9-4D43-BEE1-985D9289060D}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU {6FDF7898-5AE9-4D43-BEE1-985D9289060D}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU @@ -496,7 +422,6 @@ Global {C05EEC09-9341-404E-AA4E-19134CF4C5E3} = {C619B6EB-FD55-4D5D-9297-39D203C72069} {FCCDA5F7-D64A-4EF0-BF60-DF8DF39689D4} = {7555A83C-9CAA-4A18-8D8B-E59BD729969A} {275CD363-BA8C-4B0E-9ED7-18B72A335F0B} = {7555A83C-9CAA-4A18-8D8B-E59BD729969A} - {47D34C7D-BB8F-422B-B72B-31D2F5185E0F} = {7555A83C-9CAA-4A18-8D8B-E59BD729969A} {6FDF7898-5AE9-4D43-BEE1-985D9289060D} = {7555A83C-9CAA-4A18-8D8B-E59BD729969A} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution