[working-with] colors add Windows+UWP projects
После Ширина: | Высота: | Размер: 18 KiB |
После Ширина: | Высота: | Размер: 7.7 KiB |
|
@ -0,0 +1,8 @@
|
|||
<Application
|
||||
x:Class="WorkingWithColors.WinUniversal.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WorkingWithColors.WinUniversal"
|
||||
RequestedTheme="Light">
|
||||
|
||||
</Application>
|
|
@ -0,0 +1,110 @@
|
|||
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;
|
||||
|
||||
namespace WorkingWithColors.WinUniversal
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides application-specific behavior to supplement the default Application class.
|
||||
/// </summary>
|
||||
sealed partial class App : Application
|
||||
{
|
||||
/// <summary>
|
||||
/// 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().
|
||||
/// </summary>
|
||||
public App()
|
||||
{
|
||||
Microsoft.ApplicationInsights.WindowsAppInitializer.InitializeAsync(
|
||||
Microsoft.ApplicationInsights.WindowsCollectors.Metadata |
|
||||
Microsoft.ApplicationInsights.WindowsCollectors.Session);
|
||||
this.InitializeComponent();
|
||||
this.Suspending += OnSuspending;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
/// <param name="e">Details about the launch request and process.</param>
|
||||
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();
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when Navigation to a certain page fails
|
||||
/// </summary>
|
||||
/// <param name="sender">The Frame which failed navigation</param>
|
||||
/// <param name="e">Details about the navigation failure</param>
|
||||
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
|
||||
{
|
||||
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the suspend request.</param>
|
||||
/// <param name="e">Details about the suspend request.</param>
|
||||
private void OnSuspending(object sender, SuspendingEventArgs e)
|
||||
{
|
||||
var deferral = e.SuspendingOperation.GetDeferral();
|
||||
//TODO: Save application state and stop any background activity
|
||||
deferral.Complete();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ApplicationInsights xmlns = "http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
|
||||
</ApplicationInsights>
|
После Ширина: | Высота: | Размер: 1.4 KiB |
После Ширина: | Высота: | Размер: 7.5 KiB |
После Ширина: | Высота: | Размер: 2.9 KiB |
После Ширина: | Высота: | Размер: 1.6 KiB |
Двоичные данные
WorkingWithColors/UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
Normal file
После Ширина: | Высота: | Размер: 1.2 KiB |
После Ширина: | Высота: | Размер: 1.4 KiB |
После Ширина: | Высота: | Размер: 3.1 KiB |
|
@ -0,0 +1,11 @@
|
|||
<forms:WindowsPage
|
||||
x:Class="WorkingWithColors.WinUniversal.MainPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WorkingWithColors.WinUniversal"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:forms="using:Xamarin.Forms.Platform.UWP"
|
||||
mc:Ignorable="d">
|
||||
|
||||
</forms:WindowsPage>
|
|
@ -0,0 +1,31 @@
|
|||
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;
|
||||
|
||||
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
|
||||
|
||||
namespace WorkingWithColors.WinUniversal
|
||||
{
|
||||
/// <summary>
|
||||
/// An empty page that can be used on its own or navigated to within a Frame.
|
||||
/// </summary>
|
||||
public sealed partial class MainPage //: Page
|
||||
{
|
||||
public MainPage()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
LoadApplication(new WorkingWithColors.App());
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
IgnorableNamespaces="uap mp">
|
||||
|
||||
<Identity
|
||||
Name="a57acff2-b4b3-484d-aa95-80361a3eefc9"
|
||||
Publisher="CN=Craig"
|
||||
Version="1.0.0.0" />
|
||||
|
||||
<mp:PhoneIdentity PhoneProductId="a57acff2-b4b3-484d-aa95-80361a3eefc9" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||
|
||||
<Properties>
|
||||
<DisplayName>WorkingWithColors.WinUniversal</DisplayName>
|
||||
<PublisherDisplayName>Craig</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
|
||||
</Dependencies>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate"/>
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App"
|
||||
Executable="$targetnametoken$.exe"
|
||||
EntryPoint="WorkingWithColors.WinUniversal.App">
|
||||
<uap:VisualElements
|
||||
DisplayName="WorkingWithColors.WinUniversal"
|
||||
Square150x150Logo="Assets\Square150x150Logo.png"
|
||||
Square44x44Logo="Assets\Square44x44Logo.png"
|
||||
Description="WorkingWithColors.WinUniversal"
|
||||
BackgroundColor="transparent">
|
||||
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
|
||||
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</uap:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
|
||||
<Capabilities>
|
||||
<Capability Name="internetClient" />
|
||||
</Capabilities>
|
||||
</Package>
|
|
@ -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("WorkingWithColors.WinUniversal")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("WorkingWithColors.WinUniversal")]
|
||||
[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)]
|
|
@ -0,0 +1,31 @@
|
|||
<!--
|
||||
This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most
|
||||
developers. However, you can modify these parameters to modify the behavior of the .NET Native
|
||||
optimizer.
|
||||
|
||||
Runtime Directives are documented at http://go.microsoft.com/fwlink/?LinkID=391919
|
||||
|
||||
To fully enable reflection for App1.MyClass and all of its public/private members
|
||||
<Type Name="App1.MyClass" Dynamic="Required All"/>
|
||||
|
||||
To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32
|
||||
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
|
||||
|
||||
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
|
||||
<Namespace Name="DataClasses.ViewModels" Seralize="All" />
|
||||
-->
|
||||
|
||||
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
|
||||
<Application>
|
||||
<!--
|
||||
An Assembly element with Name="*Application*" applies to all assemblies in
|
||||
the application package. The asterisks are not wildcards.
|
||||
-->
|
||||
<Assembly Name="*Application*" Dynamic="Required All" />
|
||||
|
||||
|
||||
<!-- Add your application specific runtime directives here. -->
|
||||
|
||||
|
||||
</Application>
|
||||
</Directives>
|
|
@ -0,0 +1,164 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}</ProjectGuid>
|
||||
<OutputType>AppContainerExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>WorkingWithColors.WinUniversal</RootNamespace>
|
||||
<AssemblyName>WorkingWithColors.WinUniversal</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
|
||||
<TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
|
||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<PackageCertificateKeyFile>WorkingWithColors.WinUniversal_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
|
||||
<Content Include="ApplicationInsights.config">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<None Include="project.json" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</AppxManifest>
|
||||
<None Include="WorkingWithColors.WinUniversal_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Properties\Default.rd.xml" />
|
||||
<Content Include="Assets\LockScreenLogo.scale-200.png" />
|
||||
<Content Include="Assets\SplashScreen.scale-200.png" />
|
||||
<Content Include="Assets\Square150x150Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
|
||||
<Content Include="Assets\StoreLogo.png" />
|
||||
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Page Include="MainPage.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WorkingWithColors\WorkingWithColors.csproj">
|
||||
<Project>{99aac855-eede-40a2-a6a5-702e767eb6c1}</Project>
|
||||
<Name>WorkingWithColors</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Xamarin.Forms.Core">
|
||||
<HintPath>..\packages\Xamarin.Forms.1.5.1.6460-pre2\lib\uap10.0\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform">
|
||||
<HintPath>..\packages\Xamarin.Forms.1.5.1.6460-pre2\lib\uap10.0\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.UAP">
|
||||
<HintPath>..\packages\Xamarin.Forms.1.5.1.6460-pre2\lib\uap10.0\Xamarin.Forms.Platform.UAP.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml">
|
||||
<HintPath>..\packages\Xamarin.Forms.1.5.1.6460-pre2\lib\uap10.0\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(NuGetPackageRoot)' == ''">
|
||||
<NuGetPackageRoot>C:\Users\Craig\.nuget\packages\</NuGetPackageRoot>
|
||||
</PropertyGroup>
|
||||
<ImportGroup>
|
||||
<Import Project="$(NuGetPackageRoot)\Xamarin.Forms\2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('$(NuGetPackageRoot)\Xamarin.Forms\2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"dependencies": {
|
||||
"Microsoft.ApplicationInsights": "1.0.0",
|
||||
"Microsoft.ApplicationInsights.PersistenceChannel": "1.0.0",
|
||||
"Microsoft.ApplicationInsights.WindowsApps": "1.0.0",
|
||||
"Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0",
|
||||
"Xamarin.Forms": "2.0.1.6495"
|
||||
},
|
||||
"frameworks": {
|
||||
"uap10.0": {}
|
||||
},
|
||||
"runtimes": {
|
||||
"win10-arm": {},
|
||||
"win10-arm-aot": {},
|
||||
"win10-x86": {},
|
||||
"win10-x86-aot": {},
|
||||
"win10-x64": {},
|
||||
"win10-x64-aot": {}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<Application
|
||||
x:Class="WinPhone81.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WinPhone81">
|
||||
|
||||
</Application>
|
|
@ -0,0 +1,132 @@
|
|||
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.Media.Animation;
|
||||
using Windows.UI.Xaml.Navigation;
|
||||
|
||||
// The Blank Application template is documented at http://go.microsoft.com/fwlink/?LinkId=391641
|
||||
|
||||
namespace WinPhone81
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides application-specific behavior to supplement the default Application class.
|
||||
/// </summary>
|
||||
public sealed partial class App : Application
|
||||
{
|
||||
private TransitionCollection transitions;
|
||||
|
||||
/// <summary>
|
||||
/// 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().
|
||||
/// </summary>
|
||||
public App()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
this.Suspending += this.OnSuspending;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when the application is launched normally by the end user. Other entry points
|
||||
/// will be used when the application is launched to open a specific file, to display
|
||||
/// search results, and so forth.
|
||||
/// </summary>
|
||||
/// <param name="e">Details about the launch request and process.</param>
|
||||
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();
|
||||
|
||||
// TODO: change this value to a cache size that is appropriate for your application
|
||||
rootFrame.CacheSize = 1;
|
||||
|
||||
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)
|
||||
{
|
||||
// Removes the turnstile navigation for startup.
|
||||
if (rootFrame.ContentTransitions != null)
|
||||
{
|
||||
this.transitions = new TransitionCollection();
|
||||
foreach (var c in rootFrame.ContentTransitions)
|
||||
{
|
||||
this.transitions.Add(c);
|
||||
}
|
||||
}
|
||||
|
||||
rootFrame.ContentTransitions = null;
|
||||
rootFrame.Navigated += this.RootFrame_FirstNavigated;
|
||||
|
||||
// When the navigation stack isn't restored navigate to the first page,
|
||||
// configuring the new page by passing required information as a navigation
|
||||
// parameter
|
||||
if (!rootFrame.Navigate(typeof(MainPage), e.Arguments))
|
||||
{
|
||||
throw new Exception("Failed to create initial page");
|
||||
}
|
||||
}
|
||||
|
||||
// Ensure the current window is active
|
||||
Window.Current.Activate();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Restores the content transitions after the app has launched.
|
||||
/// </summary>
|
||||
/// <param name="sender">The object where the handler is attached.</param>
|
||||
/// <param name="e">Details about the navigation event.</param>
|
||||
private void RootFrame_FirstNavigated(object sender, NavigationEventArgs e)
|
||||
{
|
||||
var rootFrame = sender as Frame;
|
||||
rootFrame.ContentTransitions = this.transitions ?? new TransitionCollection() { new NavigationThemeTransition() };
|
||||
rootFrame.Navigated -= this.RootFrame_FirstNavigated;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the suspend request.</param>
|
||||
/// <param name="e">Details about the suspend request.</param>
|
||||
private void OnSuspending(object sender, SuspendingEventArgs e)
|
||||
{
|
||||
var deferral = e.SuspendingOperation.GetDeferral();
|
||||
|
||||
// TODO: Save application state and stop any background activity
|
||||
deferral.Complete();
|
||||
}
|
||||
}
|
||||
}
|
После Ширина: | Высота: | Размер: 2.5 KiB |
После Ширина: | Высота: | Размер: 753 B |
После Ширина: | Высота: | Размер: 14 KiB |
После Ширина: | Высота: | Размер: 1.1 KiB |
После Ширина: | Высота: | Размер: 2.1 KiB |
После Ширина: | Высота: | Размер: 4.4 KiB |
|
@ -0,0 +1,11 @@
|
|||
<forms:WindowsPhonePage
|
||||
x:Class="WinPhone81.MainPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WinPhone81"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d"
|
||||
xmlns:forms="using:Xamarin.Forms.Platform.WinRT">
|
||||
|
||||
</forms:WindowsPhonePage>
|
|
@ -0,0 +1,50 @@
|
|||
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;
|
||||
|
||||
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=391641
|
||||
|
||||
namespace WinPhone81
|
||||
{
|
||||
/// <summary>
|
||||
/// An empty page that can be used on its own or navigated to within a Frame.
|
||||
/// </summary>
|
||||
public sealed partial class MainPage
|
||||
{
|
||||
public MainPage()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
|
||||
this.NavigationCacheMode = NavigationCacheMode.Required;
|
||||
|
||||
LoadApplication(new WorkingWithColors.App());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when this page is about to be displayed in a Frame.
|
||||
/// </summary>
|
||||
/// <param name="e">Event data that describes how this page was reached.
|
||||
/// This parameter is typically used to configure the page.</param>
|
||||
protected override void OnNavigatedTo(NavigationEventArgs e)
|
||||
{
|
||||
// TODO: Prepare page for display here.
|
||||
|
||||
// TODO: If your application contains multiple pages, ensure that you are
|
||||
// handling the hardware Back button by registering for the
|
||||
// Windows.Phone.UI.Input.HardwareButtons.BackPressed event.
|
||||
// If you are using the NavigationHelper provided by some templates,
|
||||
// this event is handled for you.
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
|
||||
<Identity Name="60e43d46-226e-47c1-b6a0-949cc940c483" Publisher="CN=craigdunn" Version="1.0.0.0" />
|
||||
<mp:PhoneIdentity PhoneProductId="60e43d46-226e-47c1-b6a0-949cc940c483" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
|
||||
<Properties>
|
||||
<DisplayName>WinPhone81</DisplayName>
|
||||
<PublisherDisplayName>craigdunn</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
<Prerequisites>
|
||||
<OSMinVersion>6.3.1</OSMinVersion>
|
||||
<OSMaxVersionTested>6.3.1</OSMaxVersionTested>
|
||||
</Prerequisites>
|
||||
<Resources>
|
||||
<Resource Language="x-generate" />
|
||||
</Resources>
|
||||
<Applications>
|
||||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="WinPhone81.App">
|
||||
<m3:VisualElements DisplayName="wwColors" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="WinPhone81" ForegroundText="light" BackgroundColor="transparent">
|
||||
<m3:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\Square71x71Logo.png">
|
||||
</m3:DefaultTile>
|
||||
<m3:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</m3:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
<Capabilities>
|
||||
<Capability Name="internetClientServer" />
|
||||
</Capabilities>
|
||||
</Package>
|
|
@ -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("WinPhone81")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("WinPhone81")]
|
||||
[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)]
|
|
@ -0,0 +1,167 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{304FB058-6DDD-42F5-A692-B0750DC167F8}</ProjectGuid>
|
||||
<OutputType>AppContainerExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>WinPhone81</RootNamespace>
|
||||
<AssemblyName>WinPhone81</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformVersion>8.1</TargetPlatformVersion>
|
||||
<MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{76F1466A-8B6D-4E39-A767-685A06062A39};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_PHONE_APP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</AppxManifest>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Assets\Logo.scale-240.png" />
|
||||
<Content Include="Assets\SmallLogo.scale-240.png" />
|
||||
<Content Include="Assets\SplashScreen.scale-240.png" />
|
||||
<Content Include="Assets\Square71x71Logo.scale-240.png" />
|
||||
<Content Include="Assets\StoreLogo.scale-240.png" />
|
||||
<Content Include="Assets\WideLogo.scale-240.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Page Include="MainPage.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WorkingWithColors\WorkingWithColors.csproj">
|
||||
<Project>{99aac855-eede-40a2-a6a5-702e767eb6c1}</Project>
|
||||
<Name>WorkingWithColors</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\wpa81\Xamarin.Forms.Core.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\wpa81\Xamarin.Forms.Platform.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.WinRT, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\wpa81\Xamarin.Forms.Platform.WinRT.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.WinRT.Phone, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\wpa81\Xamarin.Forms.Platform.WinRT.Phone.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\wpa81\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '12.0' ">
|
||||
<VisualStudioVersion>12.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(TargetPlatformIdentifier)' == '' ">
|
||||
<TargetPlatformIdentifier>WindowsPhoneApp</TargetPlatformIdentifier>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<Import Project="..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>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}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Forms" version="2.0.1.6495" targetFramework="wpa81" />
|
||||
</packages>
|
|
@ -0,0 +1,7 @@
|
|||
<Application
|
||||
x:Class="WorkingWithColors.Windows.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WorkingWithColors.Windows">
|
||||
|
||||
</Application>
|
|
@ -0,0 +1,109 @@
|
|||
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 WorkingWithColors.Windows
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides application-specific behavior to supplement the default Application class.
|
||||
/// </summary>
|
||||
sealed partial class App : Application
|
||||
{
|
||||
/// <summary>
|
||||
/// 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().
|
||||
/// </summary>
|
||||
public App()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
this.Suspending += OnSuspending;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
/// <param name="e">Details about the launch request and process.</param>
|
||||
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 = 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();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Invoked when Navigation to a certain page fails
|
||||
/// </summary>
|
||||
/// <param name="sender">The Frame which failed navigation</param>
|
||||
/// <param name="e">Details about the navigation failure</param>
|
||||
void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
|
||||
{
|
||||
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 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.
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the suspend request.</param>
|
||||
/// <param name="e">Details about the suspend request.</param>
|
||||
private void OnSuspending(object sender, SuspendingEventArgs e)
|
||||
{
|
||||
var deferral = e.SuspendingOperation.GetDeferral();
|
||||
//TODO: Save application state and stop any background activity
|
||||
deferral.Complete();
|
||||
}
|
||||
}
|
||||
}
|
После Ширина: | Высота: | Размер: 801 B |
Двоичные данные
WorkingWithColors/WorkingWithColors.Windows/Assets/SmallLogo.scale-100.png
Normal file
После Ширина: | Высота: | Размер: 329 B |
Двоичные данные
WorkingWithColors/WorkingWithColors.Windows/Assets/SplashScreen.scale-100.png
Normal file
После Ширина: | Высота: | Размер: 2.1 KiB |
Двоичные данные
WorkingWithColors/WorkingWithColors.Windows/Assets/StoreLogo.scale-100.png
Normal file
После Ширина: | Высота: | Размер: 429 B |
|
@ -0,0 +1,14 @@
|
|||
<forms:WindowsPage
|
||||
x:Class="WorkingWithColors.Windows.MainPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="using:WorkingWithColors.Windows"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:forms="using:Xamarin.Forms.Platform.WinRT"
|
||||
mc:Ignorable="d">
|
||||
|
||||
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
||||
|
||||
</Grid>
|
||||
</forms:WindowsPage>
|
|
@ -0,0 +1,32 @@
|
|||
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;
|
||||
|
||||
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
|
||||
|
||||
namespace WorkingWithColors.Windows
|
||||
{
|
||||
/// <summary>
|
||||
/// An empty page that can be used on its own or navigated to within a Frame.
|
||||
/// </summary>
|
||||
public sealed partial class MainPage
|
||||
{
|
||||
public MainPage()
|
||||
{
|
||||
this.InitializeComponent();
|
||||
|
||||
LoadApplication(new WorkingWithColors.App());
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
|
||||
|
||||
<Identity Name="3067d48a-096b-4bdf-b3ce-e710efbb4e72"
|
||||
Publisher="CN=Craig"
|
||||
Version="1.0.0.0" />
|
||||
|
||||
<Properties>
|
||||
<DisplayName>WorkingWithColors.Windows</DisplayName>
|
||||
<PublisherDisplayName>Craig</PublisherDisplayName>
|
||||
<Logo>Assets\StoreLogo.png</Logo>
|
||||
</Properties>
|
||||
|
||||
<Prerequisites>
|
||||
<OSMinVersion>6.3.0</OSMinVersion>
|
||||
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
|
||||
</Prerequisites>
|
||||
|
||||
<Resources>
|
||||
<Resource Language="x-generate"/>
|
||||
</Resources>
|
||||
|
||||
<Applications>
|
||||
<Application Id="App"
|
||||
Executable="$targetnametoken$.exe"
|
||||
EntryPoint="WorkingWithColors.Windows.App">
|
||||
<m2:VisualElements
|
||||
DisplayName="WorkingWithColors.Windows"
|
||||
Square150x150Logo="Assets\Logo.png"
|
||||
Square30x30Logo="Assets\SmallLogo.png"
|
||||
Description="WorkingWithColors.Windows"
|
||||
ForegroundText="light"
|
||||
BackgroundColor="#464646">
|
||||
<m2:SplashScreen Image="Assets\SplashScreen.png" />
|
||||
</m2:VisualElements>
|
||||
</Application>
|
||||
</Applications>
|
||||
<Capabilities>
|
||||
<Capability Name="internetClient" />
|
||||
</Capabilities>
|
||||
</Package>
|
|
@ -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("WorkingWithColors.Windows")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("WorkingWithColors.Windows")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2016")]
|
||||
[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)]
|
|
@ -0,0 +1,184 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{62832C2F-AC66-4A32-9379-57521CB693C4}</ProjectGuid>
|
||||
<OutputType>AppContainerExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>WorkingWithColors.Windows</RootNamespace>
|
||||
<AssemblyName>WorkingWithColors.Windows</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformVersion>8.1</TargetPlatformVersion>
|
||||
<MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<PackageCertificateKeyFile>WorkingWithColors.Windows_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_APP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</AppxManifest>
|
||||
<None Include="packages.config" />
|
||||
<None Include="WorkingWithColors.Windows_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Assets\Logo.scale-100.png" />
|
||||
<Content Include="Assets\SmallLogo.scale-100.png" />
|
||||
<Content Include="Assets\SplashScreen.scale-100.png" />
|
||||
<Content Include="Assets\StoreLogo.scale-100.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Page Include="MainPage.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\win81\Xamarin.Forms.Core.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\win81\Xamarin.Forms.Platform.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.WinRT, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\win81\Xamarin.Forms.Platform.WinRT.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.WinRT.Tablet, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\win81\Xamarin.Forms.Platform.WinRT.Tablet.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.0.1.6495\lib\win81\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WorkingWithColors\WorkingWithColors.csproj">
|
||||
<Project>{99aac855-eede-40a2-a6a5-702e767eb6c1}</Project>
|
||||
<Name>WorkingWithColors</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '12.0' ">
|
||||
<VisualStudioVersion>12.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<Import Project="..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>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}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.0.1.6495\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Forms" version="2.0.1.6495" targetFramework="win81" />
|
||||
</packages>
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
VisualStudioVersion = 12.0.30501.0
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.23107.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors", "WorkingWithColors\WorkingWithColors.csproj", "{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}"
|
||||
EndProject
|
||||
|
@ -11,6 +11,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors.Android",
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors.WinPhone", "WinPhone\WorkingWithColors.WinPhone.csproj", "{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors.WinPhone81", "WinPhone81\WorkingWithColors.WinPhone81.csproj", "{304FB058-6DDD-42F5-A692-B0750DC167F8}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors.UWP", "UWP\WorkingWithColors.UWP.csproj", "{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkingWithColors.Windows", "WorkingWithColors.Windows\WorkingWithColors.Windows.csproj", "{62832C2F-AC66-4A32-9379-57521CB693C4}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
|
||||
|
@ -18,27 +24,181 @@ Global
|
|||
Ad-Hoc|iPhone = Ad-Hoc|iPhone
|
||||
Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
|
||||
Ad-Hoc|Mixed Platforms = Ad-Hoc|Mixed Platforms
|
||||
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|Mixed Platforms = AppStore|Mixed Platforms
|
||||
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|Mixed Platforms = Debug|Mixed Platforms
|
||||
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|Mixed Platforms = Release|Mixed Platforms
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|x64.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.Deploy.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Any CPU.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|ARM.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhone.Build.0 = AppStore|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.Deploy.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|x64.ActiveCfg = AppStore|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|x86.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|ARM.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.Build.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.Deploy.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|x64.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|x86.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|ARM.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.Build.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.Deploy.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|x64.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|x86.ActiveCfg = Release|iPhone
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|x64.Deploy.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|x64.Deploy.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|x64.Deploy.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|x64.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|x64.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
|
@ -50,6 +210,9 @@ Global
|
|||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x64.Deploy.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Ad-Hoc|x86.Deploy.0 = Release|x86
|
||||
|
@ -64,6 +227,9 @@ Global
|
|||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|Mixed Platforms.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x64.Deploy.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x86.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.AppStore|x86.Deploy.0 = Release|x86
|
||||
|
@ -78,6 +244,9 @@ Global
|
|||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|Mixed Platforms.Deploy.0 = Debug|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x64.Deploy.0 = Debug|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x86.Build.0 = Debug|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Debug|x86.Deploy.0 = Debug|x86
|
||||
|
@ -92,135 +261,254 @@ Global
|
|||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x64.Build.0 = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x64.Deploy.0 = Release|Any CPU
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x86.ActiveCfg = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x86.Build.0 = Release|x86
|
||||
{178C6FC2-A6C5-4DF0-AD23-7148CB9EB4E5}.Release|x86.Deploy.0 = Release|x86
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{99AAC855-EEDE-40A2-A6A5-702E767EB6C1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|Mixed Platforms.Deploy.0 = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Any CPU.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|ARM.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhone.Build.0 = AppStore|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|iPhoneSimulator.Deploy.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|Mixed Platforms.Deploy.0 = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.AppStore|x86.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|ARM.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.Build.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|Mixed Platforms.Deploy.0 = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Debug|x86.ActiveCfg = Debug|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|ARM.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.ActiveCfg = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.Build.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|Mixed Platforms.Deploy.0 = Release|iPhone
|
||||
{B9B2EC68-793E-4538-8146-BF8191C1C704}.Release|x86.ActiveCfg = Release|iPhone
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU
|
||||
{ECF35CC5-9446-4705-885D-97054AB0E8B0}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|ARM.Build.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Ad-Hoc|x86.Deploy.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|ARM.ActiveCfg = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|ARM.Build.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|ARM.Deploy.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhone.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Mixed Platforms.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x64.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x86.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.AppStore|x86.Deploy.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|ARM.ActiveCfg = Debug|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|ARM.Build.0 = Debug|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|ARM.Deploy.0 = Debug|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhone.Deploy.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|Mixed Platforms.Deploy.0 = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x64.Deploy.0 = Debug|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x86.Build.0 = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Debug|x86.Deploy.0 = Debug|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|ARM.ActiveCfg = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|ARM.Build.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|ARM.Deploy.0 = Release|ARM
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhone.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x64.Build.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x64.Deploy.0 = Release|Any CPU
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x86.ActiveCfg = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x86.Build.0 = Release|x86
|
||||
{304FB058-6DDD-42F5-A692-B0750DC167F8}.Release|x86.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Any CPU.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Any CPU.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Any CPU.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|ARM.Build.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhone.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhone.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhone.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x64.ActiveCfg = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x64.Build.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x64.Deploy.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Ad-Hoc|x86.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Any CPU.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Any CPU.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Any CPU.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|ARM.ActiveCfg = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|ARM.Build.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|ARM.Deploy.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhone.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhone.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhone.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhoneSimulator.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhoneSimulator.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|iPhoneSimulator.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Mixed Platforms.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x64.ActiveCfg = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x64.Build.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x64.Deploy.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x86.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.AppStore|x86.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Any CPU.Build.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Any CPU.Deploy.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|ARM.ActiveCfg = Debug|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|ARM.Build.0 = Debug|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|ARM.Deploy.0 = Debug|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|iPhone.ActiveCfg = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|Mixed Platforms.Deploy.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x64.Build.0 = Debug|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x86.Build.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Debug|x86.Deploy.0 = Debug|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|Any CPU.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|ARM.ActiveCfg = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|ARM.Build.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|ARM.Deploy.0 = Release|ARM
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|iPhone.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|iPhoneSimulator.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x64.ActiveCfg = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x64.Build.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x64.Deploy.0 = Release|x64
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x86.ActiveCfg = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x86.Build.0 = Release|x86
|
||||
{226A780D-5EF5-4BDE-A879-9B1DAA6D3D4C}.Release|x86.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|ARM.Build.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x64.ActiveCfg = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x64.Build.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x64.Deploy.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Ad-Hoc|x86.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|ARM.ActiveCfg = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|ARM.Build.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|ARM.Deploy.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhone.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Mixed Platforms.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x64.ActiveCfg = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x64.Build.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x64.Deploy.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x86.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.AppStore|x86.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|ARM.ActiveCfg = Debug|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|ARM.Build.0 = Debug|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|ARM.Deploy.0 = Debug|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhone.Deploy.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|Mixed Platforms.Deploy.0 = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x64.Build.0 = Debug|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x86.Build.0 = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Debug|x86.Deploy.0 = Debug|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|ARM.ActiveCfg = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|ARM.Build.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|ARM.Deploy.0 = Release|ARM
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhone.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|Mixed Platforms.Deploy.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x64.ActiveCfg = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x64.Build.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x64.Deploy.0 = Release|x64
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x86.ActiveCfg = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x86.Build.0 = Release|x86
|
||||
{62832C2F-AC66-4A32-9379-57521CB693C4}.Release|x86.Deploy.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|