Getting the solution to load without freezing + updates (#977)

This commit is contained in:
Matthew Leibowitz 2019-11-15 03:35:29 +02:00 коммит произвёл GitHub
Родитель 1ac7250cee
Коммит 77039d59eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
63 изменённых файлов: 844 добавлений и 26913 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -4,6 +4,7 @@
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
Output/
**/Resources/Resource.designer.cs
# Cake tools
tools/

Просмотреть файл

@ -15,7 +15,6 @@
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -41,31 +40,6 @@
<AndroidSupportedAbis>armeabi-v7a;x86;x86_64;arm64-v8a</AndroidSupportedAbis>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
<JavaMaximumHeapSize>1G</JavaMaximumHeapSize>
<AndroidLinkSkip />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<AndroidSupportedAbis>armeabi-v7a;x86;x86_64;arm64-v8a</AndroidSupportedAbis>
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
<JavaMaximumHeapSize>1G</JavaMaximumHeapSize>
<AndroidLinkSkip />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Docs\</OutputPath>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
@ -85,16 +59,16 @@
<PackageReference Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.devices" Version="2.5.20" />
<PackageReference Include="xunit.runner.devices" Version="2.3.3" />
<PackageReference Include="UnitTests.HeadlessRunner" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj">
<Project>{63a4f6a1-48bf-4d32-aed7-82f605edb042}</Project>
<Project>{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}</Project>
<Name>Xamarin.Essentials</Name>
</ProjectReference>
<ProjectReference Include="..\DeviceTests.Shared\DeviceTests.Shared.csproj">
<Project>{be0de9a3-d92c-47c5-9ec4-dfb546bbdf77}</Project>
<Project>{D30EA5AD-6C9B-4517-9767-41C2E62946DB}</Project>
<Name>DeviceTests.Shared</Name>
</ProjectReference>
</ItemGroup>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0.1.0" package="com.xamarin.essentials.devicetests" android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27" />
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,5 @@
<Project Sdk="MSBuild.Sdk.Extras/2.0.54">
<PropertyGroup>
<!--Work around so the conditions work below-->
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">Xamarin.iOS10;MonoAndroid90;uap10.0.16299</TargetFrameworks>
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">Xamarin.iOS10;MonoAndroid90;</TargetFrameworks>
<AssemblyName>XamarinEssentialsDeviceTestsShared</AssemblyName>
@ -11,10 +10,9 @@
<Version>1.0.0</Version>
<NeutralLanguage>en</NeutralLanguage>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<LangVersion>7.2</LangVersion>
<DefineConstants>$(DefineConstants);</DefineConstants>
<MDocDocumentationDirectory>$(MSBuildThisFileDirectory)..\docs\en</MDocDocumentationDirectory>
<Configurations>Debug;Release;Samples;Docs</Configurations>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugType>full</DebugType>
@ -23,12 +21,6 @@
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Docs'">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Samples'">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
@ -61,5 +53,4 @@
<Reference Include="System.Numerics.Vectors" />
<Reference Include="OpenTK-1.0" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -17,8 +17,7 @@
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>DeviceTests.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateThumbprint>B6AECFF881A1BBD4BCCC82C9C2798FF4C89DD38B</PackageCertificateThumbprint>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
@ -89,41 +88,29 @@
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|ARM'">
<OutputPath>bin\ARM\Samples\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<NoWarn>;2008;NU1603</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<NoStdLib>true</NoStdLib>
<DebugType>full</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|x64'">
<OutputPath>bin\x64\Samples\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
<OutputPath>bin\ARM64\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008;NU1603</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>ARM64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|x86'">
<OutputPath>bin\x86\Samples\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008;NU1603</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="UnitTests.HeadlessRunner" Version="2.0.0" />
@ -211,47 +198,5 @@
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|ARM'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008;NU1603</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008;NU1603</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<NoWarn>;2008;NU1603</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Project>

Двоичный файл не отображается.

Просмотреть файл

@ -24,13 +24,7 @@
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>None</MtouchLink>
<MtouchDebug>true</MtouchDebug>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignKey />
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<CodesignProvision>
</CodesignProvision>
<CodesignExtraArgs />
<CodesignResourceRules />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
@ -40,12 +34,10 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml</MtouchExtraArgs>
<MtouchArch>x86_64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignKey />
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml</MtouchExtraArgs>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
@ -55,6 +47,8 @@
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml</MtouchExtraArgs>
<ConsolePause>false</ConsolePause>
<MtouchArch>ARM64</MtouchArch>
<CodesignKey>iPhone Developer</CodesignKey>
@ -68,63 +62,13 @@
<OutputPath>bin\iPhone\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|iPhoneSimulator'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignKey />
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml</MtouchExtraArgs>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|iPhone'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
<AppExtensionDebugBundleId />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|iPhoneSimulator'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\iPhoneSimulator\Docs\</OutputPath>
<DefineConstants>__IOS__;__MOBILE__;__UNIFIED__;</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|iPhone'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\iPhone\Docs\</OutputPath>
<DefineConstants>__IOS__;__MOBILE__;__UNIFIED__;</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="OpenTK-1.0" />
<Reference Include="System" />
@ -135,17 +79,17 @@
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.devices" Version="2.5.20" />
<PackageReference Include="xunit.runner.devices" Version="2.3.3" />
<PackageReference Include="UnitTests.HeadlessRunner" Version="2.0.0" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj">
<Project>{63a4f6a1-48bf-4d32-aed7-82f605edb042}</Project>
<Project>{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}</Project>
<Name>Xamarin.Essentials</Name>
</ProjectReference>
<ProjectReference Include="..\DeviceTests.Shared\DeviceTests.Shared.csproj">
<Project>{be0de9a3-d92c-47c5-9ec4-dfb546bbdf77}</Project>
<Project>{D30EA5AD-6C9B-4517-9767-41C2E62946DB}</Project>
<Name>DeviceTests.Shared</Name>
</ProjectReference>
</ItemGroup>
@ -178,8 +122,5 @@
<ItemGroup>
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>

Просмотреть файл

@ -5,8 +5,8 @@
var TARGET = Argument("target", "Default");
var IOS_SIM_NAME = EnvironmentVariable("IOS_SIM_NAME") ?? "iPhone X";
var IOS_SIM_RUNTIME = EnvironmentVariable("IOS_SIM_RUNTIME") ?? "iOS 12.2";
var IOS_SIM_NAME = EnvironmentVariable("IOS_SIM_NAME") ?? "iPhone 11";
var IOS_SIM_RUNTIME = EnvironmentVariable("IOS_SIM_RUNTIME") ?? "com.apple.CoreSimulator.SimRuntime.iOS-13-1";
var IOS_PROJ = "./DeviceTests.iOS/DeviceTests.iOS.csproj";
var IOS_BUNDLE_ID = "com.xamarin.essentials.devicetests";
var IOS_IPA_PATH = "./DeviceTests.iOS/bin/iPhoneSimulator/Release/XamarinEssentialsDeviceTestsiOS.app";

Просмотреть файл

@ -1,6 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@ -8,7 +12,7 @@
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" InProject="false" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" InProject="false" Visible="false" />
</ItemGroup>
</Project>

Просмотреть файл

@ -17,6 +17,7 @@ namespace Samples.Droid
Xamarin.Essentials.Platform.Init(this, bundle);
Xamarin.Forms.Forms.Init(this, bundle);
Xamarin.Forms.FormsMaterial.Init(this, bundle);
LoadApplication(new App());
}

Просмотреть файл

@ -1,22 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.xamarin.essentials" android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.BATTERY_STATS" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
<application android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/MainTheme"
android:fullBackupContent="@xml/my_backup_rules">
</application>
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.BATTERY_STATS" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
<application android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:theme="@style/MainTheme" android:fullBackupContent="@xml/my_backup_rules"></application>
</manifest>

9676
Samples/Samples.Android/Resources/Resource.designer.cs сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -3,93 +3,63 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}</ProjectGuid>
<ProjectGuid>{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>Samples.Droid</RootNamespace>
<AssemblyName>Samples.Android</AssemblyName>
<TargetFrameworkVersion>v8.1</TargetFrameworkVersion>
<Deterministic>True</Deterministic>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>Full</AndroidLinkMode>
<AndroidSupportedAbis />
<JavaMaximumHeapSize>1G</JavaMaximumHeapSize>
<AndroidLinkSkip>Xamarin.Forms.Platform.Android;Xamarin.Forms.Platform;Xamarin.Forms.Core;Xamarin.Forms.Xaml;Samples;FormsViewGroup;</AndroidLinkSkip>
<AotAssemblies>false</AotAssemblies>
<EnableLLVM>false</EnableLLVM>
<BundleAssemblies>false</BundleAssemblies>
<EnableProguard>true</EnableProguard>
<AndroidUseSharedRuntime>true</AndroidUseSharedRuntime>
<EmbedAssembliesIntoApk>false</EmbedAssembliesIntoApk>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<AndroidSupportedAbis />
<JavaMaximumHeapSize>1G</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<AndroidSupportedAbis>armeabi-v7a;x86</AndroidSupportedAbis>
<JavaMaximumHeapSize>1G</JavaMaximumHeapSize>
<AotAssemblies>false</AotAssemblies>
<EnableLLVM>false</EnableLLVM>
<BundleAssemblies>false</BundleAssemblies>
<EnableProguard>true</EnableProguard>
<AndroidLinkMode>Full</AndroidLinkMode>
<AndroidLinkSkip>Xamarin.Forms.Platform.Android;Xamarin.Forms.Platform;Xamarin.Forms.Core;Xamarin.Forms.Xaml;Samples;FormsViewGroup;</AndroidLinkSkip>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\Docs\</OutputPath>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Android.Support.Design" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.v4" Version="28.0.0.3" />
@ -101,17 +71,17 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj">
<Project>{63a4f6a1-48bf-4d32-aed7-82f605edb042}</Project>
<Project>{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}</Project>
<Name>Xamarin.Essentials</Name>
</ProjectReference>
<ProjectReference Include="..\Samples\Samples.csproj">
<Project>{2550ED91-8AE1-4E9A-A964-C11515C8FA28}</Project>
<Project>{B4227123-2EEB-494A-A221-C061B5659AED}</Project>
<Name>Samples</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.Designer.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
@ -141,6 +111,7 @@
<AndroidResource Include="Resources\layout\Toolbar.axml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\strings.xml" />
<AndroidResource Include="Resources\xml\my_backup_rules.xml" />
</ItemGroup>
<ItemGroup>
<ProguardConfiguration Include="proguard.cfg" />
@ -149,11 +120,5 @@
<ItemGroup>
<AndroidAsset Include="Assets\FileSystemTemplate.txt" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\xml\my_backup_rules.xml">
<SubType>Designer</SubType>
</AndroidResource>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -16,6 +16,7 @@ namespace Samples.Tizen
{
var app = new Program();
Forms.Init(app);
FormsMaterial.Init();
Xamarin.Essentials.Platform.MapServiceToken = "MAP_SERVICE_KEY";
app.Run(args);
}

Просмотреть файл

@ -1,16 +1,14 @@
<Project Sdk="Tizen.NET.Sdk/1.0.3">
<Project Sdk="Tizen.NET.Sdk/1.0.8">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>tizen40</TargetFramework>
<TizenNetPackageVersion>4.0.0</TizenNetPackageVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
@ -24,10 +22,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Tizen.NET" Version="6.0.0.14995" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0">
<ExcludeAssets>Runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -4,7 +4,7 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}</ProjectGuid>
<ProjectGuid>{5A1D97F2-6703-4278-BBF2-12C065F7E94A}</ProjectGuid>
<OutputType>AppContainerExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Samples.UWP</RootNamespace>
@ -17,8 +17,7 @@
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<PackageCertificateKeyFile>Samples.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateThumbprint>14BD7347CBFCD5496C3BCD7EE1688BEE6B4BC1FD</PackageCertificateThumbprint>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<DebugSymbols>true</DebugSymbols>
@ -89,48 +88,39 @@
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|ARM'">
<OutputPath>bin\ARM\Samples\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<Optimize>true</Optimize>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\ARM64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>;2008</NoWarn>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<NoStdLib>true</NoStdLib>
<DebugType>full</DebugType>
<PlatformTarget>ARM64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|x64'">
<OutputPath>bin\x64\Samples\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
<OutputPath>bin\ARM64\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<PlatformTarget>ARM64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|x86'">
<OutputPath>bin\x86\Samples\</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>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.1.9" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
@ -145,7 +135,7 @@
<Name>Xamarin.Essentials</Name>
</ProjectReference>
<ProjectReference Include="..\Samples\Samples.csproj">
<Project>{2550ED91-8AE1-4E9A-A964-C11515C8FA28}</Project>
<Project>{045E53B5-3E59-4497-B996-EF6732E33ED5}</Project>
<Name>Samples</Name>
</ProjectReference>
</ItemGroup>
@ -207,65 +197,10 @@
<Content Include="Assets\Wide310x150Logo.scale-150.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
<Content Include="Assets\Wide310x150Logo.scale-400.png" />
</ItemGroup>
<ItemGroup>
<None Include="Samples.UWP_TemporaryKey.pfx" />
<Content Include="Properties\Default.rd.xml" />
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|ARM'">
<OutputPath>bin\ARM\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>ARM</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|x64'">
<OutputPath>bin\x64\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|x86'">
<OutputPath>bin\x86\Docs\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>;2008</NoWarn>
<NoStdLib>true</NoStdLib>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|Win32'">
<OutputPath>bin\Win32\Docs\</OutputPath>
<DefineConstants>;CODE_ANALYSIS</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoStdLib>true</NoStdLib>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Двоичные данные
Samples/Samples.UWP/Samples.UWP_TemporaryKey.pfx

Двоичный файл не отображается.

Просмотреть файл

@ -10,6 +10,7 @@ namespace Samples.iOS
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Xamarin.Forms.Forms.Init();
Xamarin.Forms.FormsMaterial.Init();
Distribute.DontCheckForUpdatesInDebug();
LoadApplication(new App());

Просмотреть файл

@ -5,12 +5,15 @@
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E2571C97-C048-4F91-8BB3-546CF7410C4C}</ProjectGuid>
<ProjectGuid>{AB6242B7-634F-4839-A991-7629D0D2C636}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Exe</OutputType>
<RootNamespace>Samples.iOS</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>Samples.iOS</AssemblyName>
<MtouchEnableSGenConc>true</MtouchEnableSGenConc>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<ProvisioningType>automatic</ProvisioningType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
@ -20,25 +23,18 @@
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<MtouchArch>x86_64</MtouchArch>
<MtouchLink>Full</MtouchLink>
<MtouchLink>None</MtouchLink>
<MtouchDebug>true</MtouchDebug>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml --linkskip=Samples</MtouchExtraArgs>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<CodesignProvision />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
@ -48,85 +44,40 @@
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<MtouchArch>ARM64</MtouchArch>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml --linkskip=Samples</MtouchExtraArgs>
<MtouchLink>Full</MtouchLink>
<MtouchLink>None</MtouchLink>
<MtouchInterpreter>-all</MtouchInterpreter>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|iPhoneSimulator'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Samples|iPhone'">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Samples</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<MtouchArch>ARM64</MtouchArch>
<ConsolePause>false</ConsolePause>
<CodesignKey>iPhone Developer</CodesignKey>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|iPhoneSimulator'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\iPhoneSimulator\Docs\</OutputPath>
<DefineConstants>__IOS__;__MOBILE__;__UNIFIED__;</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Docs|iPhone'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\iPhone\Docs\</OutputPath>
<DefineConstants>__IOS__;__MOBILE__;__UNIFIED__;</DefineConstants>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>C:\GitHub\xamarin\Essentials\Xamarin.Essentials.ruleset</CodeAnalysisRuleSet>
<MtouchExtraArgs>--linkskip=Xamarin.Forms.Platform.iOS --linkskip=Xamarin.Forms.Platform --linkskip=Xamarin.Forms.Core --linkskip=Xamarin.Forms.Xaml --linkskip=Samples</MtouchExtraArgs>
<MtouchLink>Full</MtouchLink>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
@ -135,7 +86,7 @@
<Name>Xamarin.Essentials</Name>
</ProjectReference>
<ProjectReference Include="..\Samples\Samples.csproj">
<Project>{2550ED91-8AE1-4E9A-A964-C11515C8FA28}</Project>
<Project>{045E53B5-3E59-4497-B996-EF6732E33ED5}</Project>
<Name>Samples</Name>
</ProjectReference>
</ItemGroup>
@ -144,9 +95,7 @@
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<None Include="Entitlements.plist" />
<None Include="Info.plist">
<SubType>Designer</SubType>
</None>
<None Include="Info.plist" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
@ -168,5 +117,4 @@
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -6,6 +6,9 @@
<Application.Resources>
<ResourceDictionary>
<converters:NegativeConverter x:Key="NegativeConverter" />
<Style TargetType="Page" ApplyToDerivedTypes="True">
<Setter Property="Visual" Value="Material" />
</Style>
</ResourceDictionary>
</Application.Resources>
</Application>

Просмотреть файл

@ -2,23 +2,11 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Configurations>Debug;Release;Samples;Docs</Configurations>
<DebugType>portable</DebugType>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Release' ">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Docs'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Samples'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
@ -27,7 +15,8 @@
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="2.1.1" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="2.1.1" />
<PackageReference Include="Xamarin.Forms" Version="4.2.0.848062" />
<PackageReference Include="Xamarin.Forms" Version="4.3.0.947036" />
<PackageReference Include="Xamarin.Forms.Visual.Material" Version="4.3.0.947036" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup>
@ -35,5 +24,4 @@
<ProjectReference Include="..\..\Xamarin.Essentials\Xamarin.Essentials.csproj" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)..\..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -37,17 +37,14 @@
<Switch IsToggled="{Binding IsHtml}" VerticalOptions="Center"/>
</StackLayout>
<Label Text="Body:" />
<Editor Text="{Binding Body}" Keyboard="Chat"
AutoSize="TextChanges"
VerticalOptions="FillAndExpand" HeightRequest="100" />
<Editor Text="{Binding Body}" Keyboard="Chat" AutoSize="TextChanges" />
<Label Text="Attachment" FontAttributes="Bold" Margin="0,6,0,0" />
<Label Text="File Name:" />
<Entry Text="{Binding AttachmentName}" />
<Label Text="File Contents:" />
<Editor Text="{Binding AttachmentContents}" Keyboard="Chat"
VerticalOptions="FillAndExpand" HeightRequest="200" />
<Editor Text="{Binding AttachmentContents}" Keyboard="Chat" AutoSize="TextChanges" />
<StackLayout Orientation="Horizontal">
<Label Text="Attach Multiple" HorizontalTextAlignment="End" HorizontalOptions="FillAndExpand" VerticalOptions="Center"/>

Просмотреть файл

@ -18,7 +18,7 @@
</StackLayout>
<Label Text="Edit the contents of the file:" />
<Editor Text="{Binding CurrentContents}" VerticalOptions="FillAndExpand" />
<Editor Text="{Binding CurrentContents}" AutoSize="TextChanges" />
</StackLayout>
</views:BasePage>

Просмотреть файл

@ -25,7 +25,7 @@
<Label Text="Reverse Geocoding:" FontAttributes="Bold" Margin="0,6,0,0" />
<Label Text="Address:" />
<Entry Text="{Binding Address}" />
<Editor Text="{Binding Address}" AutoSize="TextChanges" />
<Button Text="Detect Location" Command="{Binding GetPositionCommand}" IsEnabled="{Binding IsNotBusy}" />
<Label Text="{Binding GeocodePosition}" />
</StackLayout>

Просмотреть файл

@ -22,7 +22,7 @@
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Grid Padding="12" ColumnSpacing="6" RowSpacing="3">
<Grid Padding="12,6" ColumnSpacing="6" RowSpacing="3">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />

Просмотреть файл

@ -33,8 +33,7 @@
<Label Text="File Name:" />
<Entry Text="{Binding FileAttachmentName}" />
<Label Text="File Contents:" />
<Editor Text="{Binding FileAttachmentContents}" Keyboard="Chat"
VerticalOptions="FillAndExpand" HeightRequest="200" />
<Editor Text="{Binding FileAttachmentContents}" AutoSize="TextChanges" />
<Button Text="Open File" Command="{Binding LaunchFileCommand}" />

Просмотреть файл

@ -14,7 +14,8 @@
<ScrollView>
<StackLayout Padding="12,0,12,12" Spacing="6">
<Label Text="Enter some text to save:" />
<Entry Placeholder="Enter text..." Text="{Binding PreferenceValue}" />
<Editor Placeholder="Enter text..." Text="{Binding PreferenceValue}"
AutoSize="TextChanges" />
</StackLayout>
</ScrollView>
</StackLayout>

Просмотреть файл

@ -16,7 +16,8 @@
<Label Text="Recipents (optional, separate multiple with ',' or '*'):" />
<Entry Text="{Binding Recipient}" Keyboard="Telephone" />
<Label Text="Message Text (optional):" />
<Entry Text="{Binding MessageText}" />
<Editor Text="{Binding MessageText}"
Keyboard="Chat" AutoSize="TextChanges" />
<Button Text="Send SMS" Command="{Binding SendSmsCommand}" />

Просмотреть файл

@ -17,7 +17,8 @@
<Entry Placeholder="Enter key..." Text="{Binding Key}" />
<Label Text="Value:" />
<Entry Placeholder="Enter text..." Text="{Binding SecuredValue}" />
<Editor Placeholder="Enter text..." Text="{Binding SecuredValue}"
AutoSize="TextChanges" />
<Button Text="Load" Command="{Binding LoadCommand}" IsEnabled="{Binding IsNotBusy}" />
<Button Text="Save" Command="{Binding SaveCommand}" IsEnabled="{Binding IsNotBusy}" />

Просмотреть файл

@ -27,7 +27,8 @@
<Switch HorizontalOptions="End" IsToggled="{Binding ShareText}" VerticalOptions="End" />
</StackLayout>
<Entry Text="{Binding Text}" Placeholder="Enter text to share here." />
<Editor Text="{Binding Text}" Placeholder="Enter text to share here."
Keyboard="Chat" AutoSize="TextChanges" />
<StackLayout Orientation="Horizontal">
<Label Text="URI" HorizontalOptions="StartAndExpand" VerticalOptions="End" />
@ -48,8 +49,8 @@
<Label Text="File Name:" />
<Entry Text="{Binding ShareFileAttachmentName}" />
<Label Text="File Contents:" />
<Editor Text="{Binding ShareFileAttachmentContents}" Keyboard="Chat"
VerticalOptions="FillAndExpand" HeightRequest="200" />
<Editor Text="{Binding ShareFileAttachmentContents}"
Keyboard="Chat" AutoSize="TextChanges" />
<Button Text="Share File" Command="{Binding RequestFileCommand}" />

Просмотреть файл

@ -15,7 +15,7 @@
<ScrollView>
<StackLayout Padding="12,0,12,12" Spacing="6">
<Label Text="Text :" />
<Editor Text="{Binding Text}"/>
<Editor Text="{Binding Text}" AutoSize="TextChanges" />
<Button Text="Speak" Command="{Binding SpeakCommand}" CommandParameter="{Binding Source={x:Reference SwitchMultiple}, Path=IsToggled}" IsEnabled="{Binding IsNotBusy}" />
<Button Text="Cancel" Command="{Binding CancelCommand}" IsEnabled="{Binding IsBusy}" />

Просмотреть файл

@ -3,8 +3,13 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<IsPackable>false</IsPackable>
<Configurations>Debug;Release;Samples;Docs</Configurations>
<AssemblyName>XamarinEssentialsTests</AssemblyName>
<DebugType>portable</DebugType>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
@ -17,5 +22,4 @@
<ProjectReference Include="..\Xamarin.Essentials\Xamarin.Essentials.csproj" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -1,43 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29009.5
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{579F334C-FB7F-448A-A638-8FCB1CE53D93}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
DeviceTests\build.cake = DeviceTests\build.cake
build.ps1 = build.ps1
DeviceTests\build.ps1 = DeviceTests\build.ps1
DeviceTests\build.sh = DeviceTests\build.sh
CodeStyles.targets = CodeStyles.targets
LICENSE = LICENSE
nuget.config = nuget.config
nugetreadme.txt = nugetreadme.txt
README.md = README.md
stylecop.json = stylecop.json
Xamarin.Essentials.ruleset = Xamarin.Essentials.ruleset
EndProjectSection
VisualStudioVersion = 16.0.29505.209
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Xamarin.Essentials", "Xamarin.Essentials\Xamarin.Essentials.csproj", "{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{A14D061F-382D-4609-A3B0-E1D0BF7AB6AC}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples", "Samples\Samples\Samples.csproj", "{B4227123-2EEB-494A-A221-C061B5659AED}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Xamarin.Essentials", "Xamarin.Essentials\Xamarin.Essentials.csproj", "{63A4F6A1-48BF-4D32-AED7-82F605EDB042}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.Android", "Samples\Samples.Android\Samples.Android.csproj", "{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{77C2F93D-6EB7-49F7-A74A-C80499EC206A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.iOS", "Samples\Samples.iOS\Samples.iOS.csproj", "{AB6242B7-634F-4839-A991-7629D0D2C636}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{706C0487-6930-4E55-8720-C17D9FE6CA91}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.Tizen", "Samples\Samples.Tizen\Samples.Tizen.csproj", "{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples", "Samples\Samples\Samples.csproj", "{2550ED91-8AE1-4E9A-A964-C11515C8FA28}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.UWP", "Samples\Samples.UWP\Samples.UWP.csproj", "{5A1D97F2-6703-4278-BBF2-12C065F7E94A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.Android", "Samples\Samples.Android\Samples.Android.csproj", "{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tests", "Tests\Tests.csproj", "{2CE6F352-F61F-452F-9098-7800B3B06EEF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.iOS", "Samples\Samples.iOS\Samples.iOS.csproj", "{E2571C97-C048-4F91-8BB3-546CF7410C4C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.UWP", "Samples\Samples.UWP\Samples.UWP.csproj", "{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DeviceTests", "DeviceTests", "{EA9AC363-45BC-4959-BD17-FE3A1B724529}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeviceTests.Shared", "DeviceTests\DeviceTests.Shared\DeviceTests.Shared.csproj", "{D30EA5AD-6C9B-4517-9767-41C2E62946DB}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeviceTests.Android", "DeviceTests\DeviceTests.Android\DeviceTests.Android.csproj", "{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}"
EndProject
@ -45,365 +25,301 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeviceTests.iOS", "DeviceTe
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeviceTests.UWP", "DeviceTests\DeviceTests.UWP\DeviceTests.UWP.csproj", "{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DeviceTests.Shared", "DeviceTests\DeviceTests.Shared\DeviceTests.Shared.csproj", "{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{6330A0D0-E784-42A6-B975-451E609B907B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Samples.Tizen", "Samples\Samples.Tizen\Samples.Tizen.csproj", "{4B1850CF-C568-4C16-8B42-3E9977DE5F56}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{EE4495FA-9869-45CF-A11D-69F2218C6F62}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|iPhone = Debug|iPhone
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Docs|Any CPU = Docs|Any CPU
Docs|ARM = Docs|ARM
Docs|iPhone = Docs|iPhone
Docs|iPhoneSimulator = Docs|iPhoneSimulator
Docs|x64 = Docs|x64
Docs|x86 = Docs|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|iPhone = Release|iPhone
Release|iPhoneSimulator = Release|iPhoneSimulator
Release|x64 = Release|x64
Release|x86 = Release|x86
Samples|Any CPU = Samples|Any CPU
Samples|ARM = Samples|ARM
Samples|iPhone = Samples|iPhone
Samples|iPhoneSimulator = Samples|iPhoneSimulator
Samples|x64 = Samples|x64
Samples|x86 = Samples|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|ARM.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|ARM.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|iPhone.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|x64.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|x64.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|x86.ActiveCfg = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Debug|x86.Build.0 = Debug|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|Any CPU.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|ARM.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|ARM.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|iPhone.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|x64.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|x64.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|x86.ActiveCfg = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Docs|x86.Build.0 = Docs|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|Any CPU.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|ARM.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|ARM.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|iPhone.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|iPhone.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|x64.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|x64.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|x86.ActiveCfg = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Release|x86.Build.0 = Release|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|Any CPU.Build.0 = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|ARM.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|ARM.Build.0 = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|iPhone.Build.0 = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|x64.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|x64.Build.0 = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|x86.ActiveCfg = Samples|Any CPU
{63A4F6A1-48BF-4D32-AED7-82F605EDB042}.Samples|x86.Build.0 = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|ARM.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|ARM.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|iPhone.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|x64.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|x64.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|x86.ActiveCfg = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Debug|x86.Build.0 = Debug|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|Any CPU.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|ARM.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|ARM.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|iPhone.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|x64.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|x64.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|x86.ActiveCfg = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Docs|x86.Build.0 = Docs|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|Any CPU.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|ARM.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|ARM.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|iPhone.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|iPhone.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|x64.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|x64.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|x86.ActiveCfg = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Release|x86.Build.0 = Release|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|ARM.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|ARM.Build.0 = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|iPhone.Build.0 = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|x64.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|x64.Build.0 = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|x86.ActiveCfg = Samples|Any CPU
{77C2F93D-6EB7-49F7-A74A-C80499EC206A}.Samples|x86.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|ARM.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|ARM.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|iPhone.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|x64.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|x64.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|x86.ActiveCfg = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Debug|x86.Build.0 = Debug|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|Any CPU.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|ARM.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|ARM.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|iPhone.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|x64.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|x64.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|x86.ActiveCfg = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Docs|x86.Build.0 = Docs|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|Any CPU.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|ARM.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|ARM.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|iPhone.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|iPhone.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|x64.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|x64.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|x86.ActiveCfg = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Release|x86.Build.0 = Release|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|Any CPU.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|ARM.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|ARM.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|iPhone.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|x64.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|x64.Build.0 = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|x86.ActiveCfg = Samples|Any CPU
{2550ED91-8AE1-4E9A-A964-C11515C8FA28}.Samples|x86.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|ARM.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|ARM.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|ARM.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhone.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhone.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x64.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x64.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x64.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x86.ActiveCfg = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x86.Build.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Debug|x86.Deploy.0 = Debug|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|Any CPU.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|Any CPU.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|ARM.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|ARM.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|ARM.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhone.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhone.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|iPhoneSimulator.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x64.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x64.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x64.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x86.ActiveCfg = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x86.Build.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Docs|x86.Deploy.0 = Docs|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|Any CPU.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|Any CPU.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|ARM.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|ARM.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|ARM.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhone.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhone.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhone.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x64.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x64.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x64.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x86.ActiveCfg = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x86.Build.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Release|x86.Deploy.0 = Release|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|Any CPU.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|Any CPU.Deploy.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|ARM.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|ARM.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|ARM.Deploy.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhone.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhone.Deploy.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|iPhoneSimulator.Deploy.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x64.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x64.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x64.Deploy.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x86.ActiveCfg = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x86.Build.0 = Samples|Any CPU
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8}.Samples|x86.Deploy.0 = Samples|Any CPU
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|ARM.ActiveCfg = Debug|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|ARM.Build.0 = Debug|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|iPhone.ActiveCfg = Debug|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|iPhone.Build.0 = Debug|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|x64.Build.0 = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Debug|x86.Build.0 = Debug|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|Any CPU.ActiveCfg = Docs|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|Any CPU.Build.0 = Docs|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|ARM.ActiveCfg = Docs|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|iPhone.ActiveCfg = Docs|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|iPhone.Build.0 = Docs|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|iPhoneSimulator.ActiveCfg = Docs|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|iPhoneSimulator.Build.0 = Docs|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|x64.ActiveCfg = Docs|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Docs|x86.ActiveCfg = Docs|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|ARM.ActiveCfg = Release|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|ARM.Build.0 = Release|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|iPhone.ActiveCfg = Release|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|iPhone.Build.0 = Release|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|x64.ActiveCfg = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|x64.Build.0 = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|x86.ActiveCfg = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Release|x86.Build.0 = Release|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|Any CPU.ActiveCfg = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|Any CPU.Build.0 = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|ARM.ActiveCfg = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|iPhone.ActiveCfg = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|iPhone.Build.0 = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|iPhoneSimulator.ActiveCfg = Samples|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|iPhoneSimulator.Build.0 = Samples|iPhoneSimulator
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|x64.ActiveCfg = Samples|iPhone
{E2571C97-C048-4F91-8BB3-546CF7410C4C}.Samples|x86.ActiveCfg = Samples|iPhone
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|Any CPU.ActiveCfg = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|Any CPU.Build.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|Any CPU.Deploy.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|ARM.ActiveCfg = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|ARM.Build.0 = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|ARM.Deploy.0 = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhone.ActiveCfg = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhone.Build.0 = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhone.Deploy.0 = Debug|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhoneSimulator.Build.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|iPhoneSimulator.Deploy.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x64.ActiveCfg = Debug|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x64.Build.0 = Debug|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x64.Deploy.0 = Debug|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x86.ActiveCfg = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x86.Build.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Debug|x86.Deploy.0 = Debug|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|Any CPU.ActiveCfg = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|Any CPU.Build.0 = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|Any CPU.Deploy.0 = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|ARM.ActiveCfg = Docs|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|ARM.Build.0 = Docs|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|ARM.Deploy.0 = Docs|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|iPhone.ActiveCfg = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|iPhoneSimulator.ActiveCfg = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x64.ActiveCfg = Docs|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x64.Build.0 = Docs|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x64.Deploy.0 = Docs|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x86.ActiveCfg = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x86.Build.0 = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Docs|x86.Deploy.0 = Docs|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|Any CPU.ActiveCfg = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|Any CPU.Build.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|Any CPU.Deploy.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|ARM.ActiveCfg = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|ARM.Build.0 = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|ARM.Deploy.0 = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhone.ActiveCfg = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhone.Build.0 = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhone.Deploy.0 = Release|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhoneSimulator.ActiveCfg = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhoneSimulator.Build.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|iPhoneSimulator.Deploy.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x64.ActiveCfg = Release|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x64.Build.0 = Release|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x64.Deploy.0 = Release|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x86.ActiveCfg = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x86.Build.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Release|x86.Deploy.0 = Release|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|Any CPU.ActiveCfg = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|Any CPU.Build.0 = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|Any CPU.Deploy.0 = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|ARM.ActiveCfg = Samples|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|ARM.Build.0 = Samples|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|ARM.Deploy.0 = Samples|ARM
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|iPhone.ActiveCfg = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|iPhoneSimulator.ActiveCfg = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x64.ActiveCfg = Samples|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x64.Build.0 = Samples|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x64.Deploy.0 = Samples|x64
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x86.ActiveCfg = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x86.Build.0 = Samples|x86
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A}.Samples|x86.Deploy.0 = Samples|x86
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|ARM.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|ARM.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|ARM64.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|iPhone.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|x64.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|x64.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|x86.ActiveCfg = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Debug|x86.Build.0 = Debug|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|Any CPU.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|ARM.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|ARM.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|ARM64.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|ARM64.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|iPhone.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|iPhone.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|x64.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|x64.Build.0 = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|x86.ActiveCfg = Release|Any CPU
{CD6D6AE6-83A1-41B1-BD7C-C555A77C288B}.Release|x86.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|ARM.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|ARM.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|ARM64.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|iPhone.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|x64.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|x64.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|x86.ActiveCfg = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Debug|x86.Build.0 = Debug|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|Any CPU.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|ARM.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|ARM.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|ARM64.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|ARM64.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|iPhone.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|iPhone.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|x64.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|x64.Build.0 = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|x86.ActiveCfg = Release|Any CPU
{B4227123-2EEB-494A-A221-C061B5659AED}.Release|x86.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM64.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|ARM64.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhone.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhone.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x64.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x64.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x64.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x86.ActiveCfg = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x86.Build.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Debug|x86.Deploy.0 = Debug|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|Any CPU.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|Any CPU.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM64.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM64.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|ARM64.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhone.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhone.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhone.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x64.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x64.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x64.Deploy.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x86.ActiveCfg = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x86.Build.0 = Release|Any CPU
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C}.Release|x86.Deploy.0 = Release|Any CPU
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|Any CPU.Deploy.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM.ActiveCfg = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM.Build.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM.Deploy.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM64.ActiveCfg = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM64.Build.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|ARM64.Deploy.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|iPhone.ActiveCfg = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|iPhone.Build.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|iPhone.Deploy.0 = Debug|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x64.Build.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x64.Deploy.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x86.Build.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Debug|x86.Deploy.0 = Debug|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|Any CPU.Deploy.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM.ActiveCfg = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM.Build.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM.Deploy.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM64.ActiveCfg = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM64.Build.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|ARM64.Deploy.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|iPhone.ActiveCfg = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|iPhone.Build.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|iPhone.Deploy.0 = Release|iPhone
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x64.ActiveCfg = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x64.Build.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x64.Deploy.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x86.ActiveCfg = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x86.Build.0 = Release|iPhoneSimulator
{AB6242B7-634F-4839-A991-7629D0D2C636}.Release|x86.Deploy.0 = Release|iPhoneSimulator
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|Any CPU.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|ARM.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|ARM.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|ARM64.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|iPhone.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|x64.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|x64.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|x86.ActiveCfg = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Debug|x86.Build.0 = Debug|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|Any CPU.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|Any CPU.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|ARM.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|ARM.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|ARM64.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|ARM64.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|iPhone.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|iPhone.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|x64.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|x64.Build.0 = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|x86.ActiveCfg = Release|Any CPU
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65}.Release|x86.Build.0 = Release|Any CPU
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|Any CPU.ActiveCfg = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|Any CPU.Build.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|Any CPU.Deploy.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM.ActiveCfg = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM.Build.0 = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM.Deploy.0 = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM64.ActiveCfg = Debug|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM64.Build.0 = Debug|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|ARM64.Deploy.0 = Debug|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhone.ActiveCfg = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhone.Build.0 = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhone.Deploy.0 = Debug|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhoneSimulator.Build.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|iPhoneSimulator.Deploy.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x64.ActiveCfg = Debug|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x64.Build.0 = Debug|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x64.Deploy.0 = Debug|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x86.ActiveCfg = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x86.Build.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Debug|x86.Deploy.0 = Debug|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|Any CPU.ActiveCfg = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|Any CPU.Build.0 = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|Any CPU.Deploy.0 = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM.ActiveCfg = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM.Build.0 = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM.Deploy.0 = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM64.ActiveCfg = Release|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM64.Build.0 = Release|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|ARM64.Deploy.0 = Release|ARM64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhone.ActiveCfg = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhone.Build.0 = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhone.Deploy.0 = Release|ARM
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhoneSimulator.ActiveCfg = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhoneSimulator.Build.0 = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|iPhoneSimulator.Deploy.0 = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x64.ActiveCfg = Release|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x64.Build.0 = Release|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x64.Deploy.0 = Release|x64
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x86.ActiveCfg = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x86.Build.0 = Release|x86
{5A1D97F2-6703-4278-BBF2-12C065F7E94A}.Release|x86.Deploy.0 = Release|x86
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|ARM.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|ARM.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|ARM64.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|iPhone.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|x64.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|x64.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|x86.ActiveCfg = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Debug|x86.Build.0 = Debug|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|Any CPU.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|ARM.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|ARM.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|ARM64.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|ARM64.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|iPhone.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|iPhone.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|x64.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|x64.Build.0 = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|x86.ActiveCfg = Release|Any CPU
{2CE6F352-F61F-452F-9098-7800B3B06EEF}.Release|x86.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|ARM.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|ARM.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|ARM64.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|iPhone.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|x64.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|x64.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|x86.ActiveCfg = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Debug|x86.Build.0 = Debug|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|Any CPU.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|ARM.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|ARM.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|ARM64.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|ARM64.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|iPhone.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|iPhone.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|x64.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|x64.Build.0 = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|x86.ActiveCfg = Release|Any CPU
{D30EA5AD-6C9B-4517-9767-41C2E62946DB}.Release|x86.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM.ActiveCfg = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM.Build.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM.Deploy.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM64.Build.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|ARM64.Deploy.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|iPhone.Build.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|iPhone.Deploy.0 = Debug|Any CPU
@ -416,30 +332,15 @@ Global
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|x86.ActiveCfg = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|x86.Build.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Debug|x86.Deploy.0 = Debug|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|Any CPU.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|Any CPU.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|ARM.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|ARM.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|ARM.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhone.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhone.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|iPhoneSimulator.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x64.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x64.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x64.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x86.ActiveCfg = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x86.Build.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Docs|x86.Deploy.0 = Docs|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|Any CPU.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|Any CPU.Deploy.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM.ActiveCfg = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM.Deploy.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM64.ActiveCfg = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM64.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|ARM64.Deploy.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|iPhone.ActiveCfg = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|iPhone.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|iPhone.Deploy.0 = Release|Any CPU
@ -452,69 +353,55 @@ Global
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|x86.ActiveCfg = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|x86.Build.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Release|x86.Deploy.0 = Release|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|ARM.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|ARM.Build.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|ARM.Deploy.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhone.Build.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhone.Deploy.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|iPhoneSimulator.Deploy.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x64.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x64.Build.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x64.Deploy.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x86.ActiveCfg = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x86.Build.0 = Samples|Any CPU
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1}.Samples|x86.Deploy.0 = Samples|Any CPU
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|Any CPU.Deploy.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM.ActiveCfg = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM.Build.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM.Deploy.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM64.ActiveCfg = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM64.Build.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|ARM64.Deploy.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|iPhone.ActiveCfg = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|iPhone.Build.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|iPhone.Deploy.0 = Debug|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x64.Build.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x64.Deploy.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x86.Build.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|Any CPU.ActiveCfg = Docs|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|Any CPU.Build.0 = Docs|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|ARM.ActiveCfg = Docs|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|iPhone.ActiveCfg = Docs|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|iPhone.Build.0 = Docs|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|iPhoneSimulator.ActiveCfg = Docs|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|iPhoneSimulator.Build.0 = Docs|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|x64.ActiveCfg = Docs|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Docs|x86.ActiveCfg = Docs|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Debug|x86.Deploy.0 = Debug|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|Any CPU.Deploy.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM.ActiveCfg = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM.Build.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM.Deploy.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM64.ActiveCfg = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM64.Build.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|ARM64.Deploy.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|iPhone.ActiveCfg = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|iPhone.Build.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|iPhone.Deploy.0 = Release|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x64.ActiveCfg = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x64.Build.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x64.Deploy.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x86.ActiveCfg = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x86.Build.0 = Release|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|Any CPU.ActiveCfg = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|ARM.ActiveCfg = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|iPhone.ActiveCfg = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|iPhone.Build.0 = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|iPhoneSimulator.ActiveCfg = Samples|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|iPhoneSimulator.Build.0 = Samples|iPhoneSimulator
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|x64.ActiveCfg = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Samples|x86.ActiveCfg = Samples|iPhone
{EE8FC716-27FC-405B-BD27-AF17E01A6671}.Release|x86.Deploy.0 = Release|iPhoneSimulator
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|Any CPU.ActiveCfg = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|Any CPU.Build.0 = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|Any CPU.Deploy.0 = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM.ActiveCfg = Debug|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM.Build.0 = Debug|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM.Deploy.0 = Debug|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM64.ActiveCfg = Debug|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM64.Build.0 = Debug|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|ARM64.Deploy.0 = Debug|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|iPhone.ActiveCfg = Debug|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|iPhone.Build.0 = Debug|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|iPhone.Deploy.0 = Debug|ARM
@ -527,25 +414,15 @@ Global
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|x86.ActiveCfg = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|x86.Build.0 = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Debug|x86.Deploy.0 = Debug|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|Any CPU.ActiveCfg = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|Any CPU.Build.0 = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|ARM.ActiveCfg = Docs|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|ARM.Build.0 = Docs|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|ARM.Deploy.0 = Docs|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|iPhone.ActiveCfg = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|iPhoneSimulator.ActiveCfg = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x64.ActiveCfg = Docs|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x64.Build.0 = Docs|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x64.Deploy.0 = Docs|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x86.ActiveCfg = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x86.Build.0 = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Docs|x86.Deploy.0 = Docs|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|Any CPU.ActiveCfg = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|Any CPU.Build.0 = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|Any CPU.Deploy.0 = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM.ActiveCfg = Release|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM.Build.0 = Release|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM.Deploy.0 = Release|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM64.ActiveCfg = Release|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM64.Build.0 = Release|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|ARM64.Deploy.0 = Release|ARM64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|iPhone.ActiveCfg = Release|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|iPhone.Build.0 = Release|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|iPhone.Deploy.0 = Release|ARM
@ -558,132 +435,23 @@ Global
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|x86.ActiveCfg = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|x86.Build.0 = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Release|x86.Deploy.0 = Release|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|Any CPU.ActiveCfg = Samples|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|ARM.ActiveCfg = Samples|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|ARM.Build.0 = Samples|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|ARM.Deploy.0 = Samples|ARM
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|iPhone.ActiveCfg = Samples|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|iPhoneSimulator.ActiveCfg = Samples|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x64.ActiveCfg = Samples|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x64.Build.0 = Samples|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x64.Deploy.0 = Samples|x64
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x86.ActiveCfg = Samples|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x86.Build.0 = Samples|x86
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B}.Samples|x86.Deploy.0 = Samples|x86
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|ARM.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|ARM.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|iPhone.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|x64.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|x64.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|x86.ActiveCfg = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Debug|x86.Build.0 = Debug|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|Any CPU.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|Any CPU.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|ARM.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|ARM.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|iPhone.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|iPhone.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|iPhoneSimulator.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|iPhoneSimulator.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|x64.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|x64.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|x86.ActiveCfg = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Docs|x86.Build.0 = Docs|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|Any CPU.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|ARM.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|ARM.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|iPhone.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|iPhone.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|x64.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|x64.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|x86.ActiveCfg = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Release|x86.Build.0 = Release|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|Any CPU.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|Any CPU.Build.0 = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|ARM.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|ARM.Build.0 = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|iPhone.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|iPhone.Build.0 = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|iPhoneSimulator.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|iPhoneSimulator.Build.0 = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|x64.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|x64.Build.0 = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|x86.ActiveCfg = Samples|Any CPU
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77}.Samples|x86.Build.0 = Samples|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|ARM.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|ARM.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|iPhone.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|x64.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|x64.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|x86.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Debug|x86.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|Any CPU.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|Any CPU.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|ARM.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|ARM.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|iPhone.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|iPhone.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|iPhoneSimulator.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|x64.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|x64.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|x86.ActiveCfg = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Docs|x86.Build.0 = Debug|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|Any CPU.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|ARM.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|ARM.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|iPhone.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|iPhone.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|x64.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|x64.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|x86.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Release|x86.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|Any CPU.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|Any CPU.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|ARM.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|ARM.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|iPhone.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|iPhone.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|iPhoneSimulator.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|x64.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|x64.Build.0 = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|x86.ActiveCfg = Release|Any CPU
{4B1850CF-C568-4C16-8B42-3E9977DE5F56}.Samples|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{77C2F93D-6EB7-49F7-A74A-C80499EC206A} = {A14D061F-382D-4609-A3B0-E1D0BF7AB6AC}
{2550ED91-8AE1-4E9A-A964-C11515C8FA28} = {706C0487-6930-4E55-8720-C17D9FE6CA91}
{C1CD30D3-52CA-4F8E-8499-BE88567CA2F8} = {706C0487-6930-4E55-8720-C17D9FE6CA91}
{E2571C97-C048-4F91-8BB3-546CF7410C4C} = {706C0487-6930-4E55-8720-C17D9FE6CA91}
{A0798FC9-AB9D-4CCA-AF44-71B7A4691D5A} = {706C0487-6930-4E55-8720-C17D9FE6CA91}
{EA9AC363-45BC-4959-BD17-FE3A1B724529} = {A14D061F-382D-4609-A3B0-E1D0BF7AB6AC}
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1} = {EA9AC363-45BC-4959-BD17-FE3A1B724529}
{EE8FC716-27FC-405B-BD27-AF17E01A6671} = {EA9AC363-45BC-4959-BD17-FE3A1B724529}
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B} = {EA9AC363-45BC-4959-BD17-FE3A1B724529}
{BE0DE9A3-D92C-47C5-9EC4-DFB546BBDF77} = {EA9AC363-45BC-4959-BD17-FE3A1B724529}
{4B1850CF-C568-4C16-8B42-3E9977DE5F56} = {706C0487-6930-4E55-8720-C17D9FE6CA91}
{B4227123-2EEB-494A-A221-C061B5659AED} = {6330A0D0-E784-42A6-B975-451E609B907B}
{3C0CDEF3-495E-45F4-8B12-0E05EF11295C} = {6330A0D0-E784-42A6-B975-451E609B907B}
{AB6242B7-634F-4839-A991-7629D0D2C636} = {6330A0D0-E784-42A6-B975-451E609B907B}
{70574463-7D8F-47F2-9DF0-8D3EA97DFB65} = {6330A0D0-E784-42A6-B975-451E609B907B}
{5A1D97F2-6703-4278-BBF2-12C065F7E94A} = {6330A0D0-E784-42A6-B975-451E609B907B}
{2CE6F352-F61F-452F-9098-7800B3B06EEF} = {EE4495FA-9869-45CF-A11D-69F2218C6F62}
{D30EA5AD-6C9B-4517-9767-41C2E62946DB} = {EE4495FA-9869-45CF-A11D-69F2218C6F62}
{CB2072E0-A437-4811-AE17-16CAE0DDA1B1} = {EE4495FA-9869-45CF-A11D-69F2218C6F62}
{EE8FC716-27FC-405B-BD27-AF17E01A6671} = {EE4495FA-9869-45CF-A11D-69F2218C6F62}
{4BD0D88F-7E7A-4C3B-9E34-BF3717A8FF4B} = {EE4495FA-9869-45CF-A11D-69F2218C6F62}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {105B0052-C7EA-44D0-8697-37A45E1392AF}
SolutionGuid = {E012047E-6826-4037-8D1A-5606CD7D345D}
EndGlobalSection
EndGlobal

Просмотреть файл

@ -5,9 +5,9 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
<RootNamespace>Xamarin.Essentials</RootNamespace>
<PackageId>Xamarin.Essentials</PackageId>
<PackageIconUrl>https://raw.githubusercontent.com/xamarin/Essentials/master/Assets/xamarin.essentials_128x128.png</PackageIconUrl>
<PackageIcon>icon.png</PackageIcon>
<Summary>Xamarin.Essentials: a kit of essential API's for your apps</Summary>
<PackageTags>xamarin, windows, ios, android, xamarin.forms, watchos, tvos, toolkit, Xamarin.Essentials, kit</PackageTags>
<PackageTags>xamarin, windows, uwp, ios, android, watchos, tvos, tizen, toolkit, xamarin.forms, Xamarin.Essentials, kit</PackageTags>
<Title>Xamarin.Essentials</Title>
<Description>Xamarin.Essentials: a kit of essential API's for your apps</Description>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
@ -21,16 +21,15 @@
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<RepositoryUrl>https://github.com/xamarin/Essentials</RepositoryUrl>
<PackageReleaseNotes>See: https://aka.ms/xamarinessentials-releasenotes</PackageReleaseNotes>
<LangVersion>8.0</LangVersion>
<DefineConstants>$(DefineConstants);</DefineConstants>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<PackageLicenseUrl>https://go.microsoft.com/fwlink/?linkid=868961</PackageLicenseUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=868960</PackageProjectUrl>
<MDocDocumentationDirectory>$(MSBuildThisFileDirectory)..\docs\en</MDocDocumentationDirectory>
<Configurations>Debug;Release;Samples;Docs</Configurations>
<DebugType>portable</DebugType>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
<DebugSymbols>true</DebugSymbols>
@ -44,9 +43,11 @@
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup Condition=" '$(Configuration)'=='Release' And '$(OS)' == 'Windows_NT' ">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE" PackagePath="" Pack="true" />
<None Include="..\Assets\xamarin.essentials_128x128.png" PackagePath="icon.png" Pack="true" />
<None Include="..\nugetreadme.txt" PackagePath="readme.txt" Pack="true" />
<PackageReference Include="mdoc" Version="5.7.4.10" PrivateAssets="All" />
<Compile Include="**\*.shared.cs" />
@ -76,10 +77,8 @@
<AndroidResource Include="Resources\xml\*.xml" />
<PackageReference Include="Xamarin.Android.Support.Compat" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.CustomTabs" Version="28.0.0.3" />
<PackageReference Condition=" '$(OS)' == 'Windows_NT' And $(TargetFrameworkVersion.TrimStart('vV')) &lt; 9.0" Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Condition=" '$(OS)' != 'Windows_NT' " Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
<PackageReference Include="Xamarin.Android.Support.Core.Utils" Version="28.0.0.3" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
<Compile Include="**\*.ios.cs" />
<Compile Include="**\*.ios.*.cs" />
@ -93,7 +92,7 @@
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
<Reference Include="OpenTK-1.0" />
</ItemGroup>
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.WatchOS')) ">
<Compile Include="**\*.watchos.cs" />
<Compile Include="**\*.watchos.*.cs" />
@ -105,6 +104,8 @@
<Compile Include="**\*.tizen.cs" />
<Compile Include="**\*.tizen.*.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="mdoc.targets" />
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)mdoc.targets" />
<Import Project="$(MSBuildThisFileDirectory)..\CodeStyles.targets" />
</Project>

Просмотреть файл

@ -75,27 +75,30 @@
</PropertyGroup>
<ItemGroup Condition=" '$(OS)' == 'Windows_NT' ">
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\MonoAndroid\v1.0" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\MonoAndroid\v4.4" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\MonoAndroid\v9.0" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\Xamarin.iOS\v1.0" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\Xamarin.TVOS\v1.0" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\Xamarin.WatchOS\v1.0" />
<MDocReferenceAssembly Include="$(FrameworkReferenceAssemblyPath)\Xamarin.Mac\v2.0" />
<MDocReferenceAssembly Include="$(WindowsKitsReferenceAssemblyPath)\Windows.Foundation.FoundationContract\3.0.0.0" />
<MDocReferenceAssembly Include="$(WindowsKitsReferenceAssemblyPath)\Windows.Foundation.FoundationContract\5.0.0.0" />
<MDocReferenceAssembly Include="$(WindowsKitsReferenceAssemblyPath)\Windows.Foundation.UniversalApiContract\5.0.0.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<MDocReferenceAssemblies>@(MDocReferenceAssembly -> '--lib=&quot;%(Identity)&quot;', ' ')</MDocReferenceAssemblies>
</PropertyGroup>
<!-- the actual task -->
<PropertyGroup>
<BinConfigDir>$(MSBuildProjectDirectory)\bin\$(Configuration)\</BinConfigDir>
<TmpDir>$(MSBuildProjectDirectory)\tmp\</TmpDir>
</PropertyGroup>
<ItemGroup>
<MDocReferenceAssembly Include="$(BinConfigDir)monoandroid90" />
</ItemGroup>
<PropertyGroup>
<MDocReferenceAssemblies>@(MDocReferenceAssembly -> '--lib=&quot;%(Identity)&quot;', ' ')</MDocReferenceAssemblies>
</PropertyGroup>
<RemoveDir Directories="$(TmpDir)" />
<MakeDir Directories="$(TmpDir)" />
<Copy SourceFiles="$(MDocDocumentationDirectory)\..\frameworks.xml" DestinationFolder="$(TmpDir)" />
<Copy SourceFiles="$(BinConfigDir)netstandard2.0\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials" />
<Copy SourceFiles="$(BinConfigDir)monoandroid81\81\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials-android" />
<Copy SourceFiles="$(BinConfigDir)monoandroid90\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials-android" />
<Copy SourceFiles="$(BinConfigDir)xamarin.ios10\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials-ios" />
<Copy SourceFiles="$(BinConfigDir)xamarin.tvos10\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials-tvos" />
<Copy SourceFiles="$(BinConfigDir)xamarin.watchos10\$(AssemblyName).dll" DestinationFolder="$(TmpDir)xamarin-essentials-watchos" />
@ -164,6 +167,40 @@
}
}
// the tooling can't handle the ToPlatform* that differs only on return types
if (xdoc.Root.Name == "Type") {
var typeNameAttr = xdoc.Root.Attribute("FullName");
if (typeNameAttr != null && typeNameAttr.Value.EndsWith("Extensions")) {
foreach (var member in xdoc.Root.Descendants("Member").ToArray()) {
var memberNameAttr = member.Attribute("MemberName");
if (memberNameAttr != null && memberNameAttr.Value.StartsWith("ToPlatform")) {
member.Remove();
}
}
}
}
if (xdoc.Root.Name == "Overview") {
foreach (var member in xdoc.Root.Descendants("Member").ToArray()) {
var memberNameAttr = member.Attribute("MemberName");
if (memberNameAttr != null && memberNameAttr.Value.StartsWith("ToPlatform")) {
member.Remove();
}
}
}
if (xdoc.Root.Name == "Framework") {
foreach (var type in xdoc.Root.Descendants("Type").ToArray()) {
var typeNameAttr = type.Attribute("Name");
if (typeNameAttr != null && typeNameAttr.Value.EndsWith("Extensions")) {
foreach (var member in type.Descendants("Member").ToArray()) {
var memberNameAttr = member.Attribute("Id");
if (memberNameAttr != null && memberNameAttr.Value.Contains(".ToPlatform")) {
member.Remove();
}
}
}
}
}
var settings = new XmlWriterSettings {
Encoding = new UTF8Encoding(),
Indent = true,

Просмотреть файл

@ -1,14 +1,15 @@
variables:
CurrentSemanticVersionBase: '1.0.0'
CurrentSemanticVersion: '$(CurrentSemanticVersionBase)-preview$(Build.BuildNumber)'
CurrentSemanticVersionBase: '1.4.0'
PreviewNumber: $[counter(variables['CurrentSemanticVersionBase'], 1001)]
CurrentSemanticVersion: '$(CurrentSemanticVersionBase)-preview$(PreviewNumber)'
NugetPackageVersion: '$(CurrentSemanticVersion)'
MONO_VERSION: 6_4_0
XCODE_VERSION: 11.1
NETCORE_VERSION: '3.0.x'
NETCORE_TEST_VERSION: '2.2.x'
IOS_SIM_NAME: 'iPhone Xs'
IOS_SIM_RUNTIME: 'com.apple.CoreSimulator.SimRuntime.iOS-12-4'
IOS_SIM_NAME: 'iPhone 11'
IOS_SIM_RUNTIME: 'com.apple.CoreSimulator.SimRuntime.iOS-13-1'
ANDROID_EMU_TARGET: 'system-images;android-26;google_apis;x86'
ANDROID_EMU_DEVICE: 'Nexus 5X'
RunPoliCheck: 'false'

Просмотреть файл

@ -122,7 +122,6 @@
<Member Id="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.Android.ToPlatformColor(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(Android.Graphics.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
@ -209,8 +208,11 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.watchOS" />
</Type>
<Type Name="Xamarin.Essentials.DeviceType" Id="T:Xamarin.Essentials.DeviceType">
<Member Id="F:Xamarin.Essentials.DeviceType.Physical" />
@ -534,8 +536,6 @@
<Member Id="M:Xamarin.Essentials.Platform.OnRequestPermissionsResult(System.Int32,System.String[],Android.Content.PM.Permission[])" />
</Type>
<Type Name="Xamarin.Essentials.PointExtensions" Id="T:Xamarin.Essentials.PointExtensions">
<Member Id="M:Xamarin.Essentials.PointExtensions.Android.ToPlatformPoint(System.Drawing.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.Android.ToPlatformPointF(System.Drawing.PointF)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(Android.Graphics.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(Android.Graphics.PointF)" />
</Type>
@ -581,8 +581,6 @@
<Member Id="M:Xamarin.Essentials.ReadOnlyFile.#ctor(Xamarin.Essentials.FileBase)" />
</Type>
<Type Name="Xamarin.Essentials.RectangleExtensions" Id="T:Xamarin.Essentials.RectangleExtensions">
<Member Id="M:Xamarin.Essentials.RectangleExtensions.Android.ToPlatformRectangle(System.Drawing.Rectangle)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.Android.ToPlatformRectangleF(System.Drawing.RectangleF)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(Android.Graphics.Rect)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(Android.Graphics.RectF)" />
</Type>
@ -628,8 +626,6 @@
<Member Id="P:Xamarin.Essentials.ShareTextRequest.Uri" />
</Type>
<Type Name="Xamarin.Essentials.SizeExtensions" Id="T:Xamarin.Essentials.SizeExtensions">
<Member Id="M:Xamarin.Essentials.SizeExtensions.Android.ToPlatformSize(System.Drawing.Size)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.Android.ToPlatformSizeF(System.Drawing.SizeF)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSize(Android.Util.Size)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSizeF(Android.Util.SizeF)" />
</Type>
@ -669,16 +665,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -122,7 +122,6 @@
<Member Id="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.iOS.ToPlatformColor(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(UIKit.UIColor)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
@ -210,8 +209,11 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.watchOS" />
</Type>
<Type Name="Xamarin.Essentials.DeviceType" Id="T:Xamarin.Essentials.DeviceType">
<Member Id="F:Xamarin.Essentials.DeviceType.Physical" />
@ -522,8 +524,6 @@
</Type>
<Type Name="Xamarin.Essentials.Platform" Id="T:Xamarin.Essentials.Platform" />
<Type Name="Xamarin.Essentials.PointExtensions" Id="T:Xamarin.Essentials.PointExtensions">
<Member Id="M:Xamarin.Essentials.PointExtensions.iOS.ToPlatformPoint(System.Drawing.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.iOS.ToPlatformPoint(System.Drawing.PointF)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(CoreGraphics.CGPoint)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(CoreGraphics.CGPoint)" />
</Type>
@ -569,8 +569,6 @@
<Member Id="M:Xamarin.Essentials.ReadOnlyFile.#ctor(Xamarin.Essentials.FileBase)" />
</Type>
<Type Name="Xamarin.Essentials.RectangleExtensions" Id="T:Xamarin.Essentials.RectangleExtensions">
<Member Id="M:Xamarin.Essentials.RectangleExtensions.iOS.ToPlatformRectangle(System.Drawing.Rectangle)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.iOS.ToPlatformRectangle(System.Drawing.RectangleF)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(CoreGraphics.CGRect)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(CoreGraphics.CGRect)" />
</Type>
@ -618,8 +616,6 @@
<Member Id="P:Xamarin.Essentials.ShareTextRequest.Uri" />
</Type>
<Type Name="Xamarin.Essentials.SizeExtensions" Id="T:Xamarin.Essentials.SizeExtensions">
<Member Id="M:Xamarin.Essentials.SizeExtensions.iOS.ToPlatformSize(System.Drawing.Size)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.iOS.ToPlatformSize(System.Drawing.SizeF)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSize(CoreGraphics.CGSize)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSizeF(CoreGraphics.CGSize)" />
</Type>
@ -659,16 +655,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -122,7 +122,6 @@
<Member Id="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToPlatformColor(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(UIKit.UIColor)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
@ -209,6 +208,7 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
@ -523,8 +523,6 @@
</Type>
<Type Name="Xamarin.Essentials.Platform" Id="T:Xamarin.Essentials.Platform" />
<Type Name="Xamarin.Essentials.PointExtensions" Id="T:Xamarin.Essentials.PointExtensions">
<Member Id="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.PointF)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(CoreGraphics.CGPoint)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(CoreGraphics.CGPoint)" />
</Type>
@ -570,8 +568,6 @@
<Member Id="M:Xamarin.Essentials.ReadOnlyFile.#ctor(Xamarin.Essentials.FileBase)" />
</Type>
<Type Name="Xamarin.Essentials.RectangleExtensions" Id="T:Xamarin.Essentials.RectangleExtensions">
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.Rectangle)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.RectangleF)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(CoreGraphics.CGRect)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(CoreGraphics.CGRect)" />
</Type>
@ -654,16 +650,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -122,7 +122,6 @@
<Member Id="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.UWP.ToPlatformColor(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(Windows.UI.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
@ -209,8 +208,11 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.watchOS" />
</Type>
<Type Name="Xamarin.Essentials.DeviceType" Id="T:Xamarin.Essentials.DeviceType">
<Member Id="F:Xamarin.Essentials.DeviceType.Physical" />
@ -523,8 +525,6 @@
<Member Id="P:Xamarin.Essentials.Platform.MapServiceToken" />
</Type>
<Type Name="Xamarin.Essentials.PointExtensions" Id="T:Xamarin.Essentials.PointExtensions">
<Member Id="M:Xamarin.Essentials.PointExtensions.UWP.ToPlatformPoint(System.Drawing.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.UWP.ToPlatformPoint(System.Drawing.PointF)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(Windows.Foundation.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(Windows.Foundation.Point)" />
</Type>
@ -570,8 +570,6 @@
<Member Id="M:Xamarin.Essentials.ReadOnlyFile.#ctor(Xamarin.Essentials.FileBase)" />
</Type>
<Type Name="Xamarin.Essentials.RectangleExtensions" Id="T:Xamarin.Essentials.RectangleExtensions">
<Member Id="M:Xamarin.Essentials.RectangleExtensions.UWP.ToPlatformRectangle(System.Drawing.Rectangle)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.UWP.ToPlatformRectangle(System.Drawing.RectangleF)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(Windows.Foundation.Rect)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(Windows.Foundation.Rect)" />
</Type>
@ -617,8 +615,6 @@
<Member Id="P:Xamarin.Essentials.ShareTextRequest.Uri" />
</Type>
<Type Name="Xamarin.Essentials.SizeExtensions" Id="T:Xamarin.Essentials.SizeExtensions">
<Member Id="M:Xamarin.Essentials.SizeExtensions.UWP.ToPlatformSize(System.Drawing.Size)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.UWP.ToPlatformSize(System.Drawing.SizeF)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSize(Windows.Foundation.Size)" />
<Member Id="M:Xamarin.Essentials.SizeExtensions.ToSystemSizFe(Windows.Foundation.Size)" />
</Type>
@ -658,16 +654,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -122,7 +122,6 @@
<Member Id="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToPlatformColor(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(UIKit.UIColor)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<Member Id="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
@ -209,6 +208,7 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
@ -523,8 +523,6 @@
</Type>
<Type Name="Xamarin.Essentials.Platform" Id="T:Xamarin.Essentials.Platform" />
<Type Name="Xamarin.Essentials.PointExtensions" Id="T:Xamarin.Essentials.PointExtensions">
<Member Id="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.Point)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.PointF)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(CoreGraphics.CGPoint)" />
<Member Id="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(CoreGraphics.CGPoint)" />
</Type>
@ -570,8 +568,6 @@
<Member Id="M:Xamarin.Essentials.ReadOnlyFile.#ctor(Xamarin.Essentials.FileBase)" />
</Type>
<Type Name="Xamarin.Essentials.RectangleExtensions" Id="T:Xamarin.Essentials.RectangleExtensions">
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.Rectangle)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.RectangleF)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(CoreGraphics.CGRect)" />
<Member Id="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(CoreGraphics.CGRect)" />
</Type>
@ -654,16 +650,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -207,6 +207,7 @@
<Member Id="M:Xamarin.Essentials.DevicePlatform.ToString" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Android" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.iOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.tvOS" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.Unknown" />
<Member Id="P:Xamarin.Essentials.DevicePlatform.UWP" />
@ -637,16 +638,20 @@
<Member Id="M:Xamarin.Essentials.UnitConverters.HectopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.HertzToRadiansPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KelvinToCelsius(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilometersToMiles(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToHectopascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.KilopascalsToPascals(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToKilometers(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.MilesToMeters(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.PascalsToAtmospheres(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToDegreesPerSecond(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansPerSecondToHertz(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.RadiansToDegrees(System.Double)" />
<Member Id="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
</Type>
<Type Name="Xamarin.Essentials.VersionTracking" Id="T:Xamarin.Essentials.VersionTracking">
<Member Id="M:Xamarin.Essentials.VersionTracking.IsFirstLaunchForBuild(System.String)" />

Просмотреть файл

@ -87,72 +87,6 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformColor">
<MemberSignature Language="C#" Value="public static Android.Graphics.Color ToPlatformColor (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Android.Graphics.Color ToPlatformColor(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.Android.ToPlatformColor(System.Drawing.Color)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Graphics.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
<summary>Converts the color to the platform specific color.</summary>
<returns>The platform color.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformColor">
<MemberSignature Language="C#" Value="public static UIKit.UIColor ToPlatformColor (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class UIKit.UIColor ToPlatformColor(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.iOS.ToPlatformColor(System.Drawing.Color)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>UIKit.UIColor</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
<summary>Converts the color to the platform specific color.</summary>
<returns>The platform color.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformColor">
<MemberSignature Language="C#" Value="public static Windows.UI.Color ToPlatformColor (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.UI.Color ToPlatformColor(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.UWP.ToPlatformColor(System.Drawing.Color)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.UI.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
<summary>Converts the color to the platform specific color.</summary>
<returns>The platform color.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToSystemColor">
<MemberSignature Language="C#" Value="public static System.Drawing.Color ToSystemColor (this Android.Graphics.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color ToSystemColor(valuetype Android.Graphics.Color color) cil managed" />
@ -166,7 +100,7 @@
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="Android.Graphics.Color" RefType="this" />
<Parameter Name="color" Type="Android.Graphics.Color" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-android" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -188,7 +122,7 @@
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="UIKit.UIColor" RefType="this" />
<Parameter Name="color" Type="UIKit.UIColor" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -210,7 +144,7 @@
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="Windows.UI.Color" RefType="this" />
<Parameter Name="color" Type="Windows.UI.Color" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>

Просмотреть файл

@ -198,6 +198,24 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Tizen">
<MemberSignature Language="C#" Value="public static Xamarin.Essentials.DevicePlatform Tizen { get; }" />
<MemberSignature Language="ILAsm" Value=".property valuetype Xamarin.Essentials.DevicePlatform Tizen" />
<MemberSignature Language="DocId" Value="P:Xamarin.Essentials.DevicePlatform.Tizen" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Xamarin.Essentials.DevicePlatform</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ToString">
<MemberSignature Language="C#" Value="public override string ToString ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance string ToString() cil managed" />

Просмотреть файл

@ -27,7 +27,7 @@
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="displayInfo" Type="Xamarin.Essentials.DisplayInfo" Index="0" FrameworkAlternate="xamarin-essentials;xamarin-essentials-android;xamarin-essentials-ios;xamarin-essentials-uwp;xamarin-essentials-tvos;xamarin-essentials-watchos" />
<Parameter Name="displayInfo" Type="Xamarin.Essentials.DisplayInfo" />
</Parameters>
<Docs>
<param name="displayInfo">To be added.</param>

Просмотреть файл

@ -73,7 +73,7 @@
<Parameter Name="body" Type="System.String" />
<Parameter Name="to" Type="System.String[]">
<Attributes>
<Attribute>
<Attribute FrameworkAlternate="xamarin-essentials">
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>

Просмотреть файл

@ -26,7 +26,7 @@
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="fullPath" Type="System.String" Index="0" FrameworkAlternate="xamarin-essentials;xamarin-essentials-android;xamarin-essentials-ios;xamarin-essentials-uwp;xamarin-essentials-tvos;xamarin-essentials-watchos" />
<Parameter Name="fullPath" Type="System.String" />
</Parameters>
<Docs>
<param name="fullPath">Full path and filename to file.</param>

Просмотреть файл

@ -44,7 +44,7 @@
<Parameter Name="body" Type="System.String" />
<Parameter Name="to" Type="System.String[]">
<Attributes>
<Attribute>
<Attribute FrameworkAlternate="xamarin-essentials">
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>

Просмотреть файл

@ -26,6 +26,17 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="xamarin-essentials;xamarin-essentials-uwp">
<AttributeName>System.ComponentModel.EditorBrowsable</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Obsolete("ExperimentalFeatures.EmailAttachments is obsolete as of version 1.3.0 and no longer required to use the feature.")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android;xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos">
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
@ -74,6 +85,17 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="xamarin-essentials;xamarin-essentials-uwp">
<AttributeName>System.ComponentModel.EditorBrowsable</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Obsolete("ExperimentalFeatures.OpenFileRequest is obsolete as of version 1.3.0 and no longer required to use the feature.")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android;xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos">
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
@ -93,6 +115,17 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="xamarin-essentials;xamarin-essentials-uwp">
<AttributeName>System.ComponentModel.EditorBrowsable</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Obsolete("ExperimentalFeatures.ShareFileRequest is obsolete as of version 1.3.0 and no longer required to use the feature.")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android;xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos">
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>

Просмотреть файл

@ -11,10 +11,10 @@
</Base>
<Interfaces />
<Attributes>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<Attribute>
<AttributeName>Android.App.MetaData("android.support.FILE_PROVIDER_PATHS", Resource="@xml/xamarin_essentials_fileprovider_file_paths")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<Attribute>
<AttributeName>Android.Content.ContentProvider(new System.String[] { "${applicationId}.fileProvider" }, Exported=false, GrantUriPermissions=true, Name="xamarin.essentials.fileProvider")</AttributeName>
</Attribute>
</Attributes>

Просмотреть файл

@ -1,93 +0,0 @@
<Type Name="LauncherFile" FullName="Xamarin.Essentials.LauncherFile">
<TypeSignature Language="C#" Value="public class LauncherFile : Xamarin.Essentials.FileBase" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit LauncherFile extends Xamarin.Essentials.FileBase" />
<TypeSignature Language="DocId" Value="T:Xamarin.Essentials.LauncherFile" />
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Xamarin.Essentials.FileBase</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LauncherFile (string fullPath);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string fullPath) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LauncherFile.#ctor(System.String)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="fullPath" Type="System.String" />
</Parameters>
<Docs>
<param name="fullPath">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LauncherFile (Xamarin.Essentials.FileBase file);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Xamarin.Essentials.FileBase file) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LauncherFile.#ctor(Xamarin.Essentials.FileBase)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="file" Type="Xamarin.Essentials.FileBase" />
</Parameters>
<Docs>
<param name="file">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public LauncherFile (string fullPath, string contentType);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string fullPath, string contentType) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LauncherFile.#ctor(System.String,System.String)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="fullPath" Type="System.String" />
<Parameter Name="contentType" Type="System.String" />
</Parameters>
<Docs>
<param name="fullPath">To be added.</param>
<param name="contentType">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AttachmentName">
<MemberSignature Language="C#" Value="public string AttachmentName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AttachmentName" />
<MemberSignature Language="DocId" Value="P:Xamarin.Essentials.LauncherFile.AttachmentName" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>

Просмотреть файл

@ -222,15 +222,15 @@
</ReturnValue>
<Parameters>
<Parameter Name="latitudeStart" Type="System.Double" />
<Parameter Name="latitudeEnd" Type="System.Double" />
<Parameter Name="longitudeStart" Type="System.Double" />
<Parameter Name="latitudeEnd" Type="System.Double" />
<Parameter Name="longitudeEnd" Type="System.Double" />
<Parameter Name="units" Type="Xamarin.Essentials.DistanceUnits" />
</Parameters>
<Docs>
<param name="latitudeStart">Start latitude to calculate from.</param>
<param name="latitudeEnd">End latitude to calculate from.</param>
<param name="longitudeStart">Start longitude to calculate from.</param>
<param name="latitudeEnd">End latitude to calculate from.</param>
<param name="longitudeEnd">End longitude to calculate from.</param>
<param name="units">Units to return.</param>
<summary>Calculate distance between two locations.</summary>

Просмотреть файл

@ -27,7 +27,7 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
</AssemblyInfo>
<Parameters>
<Parameter Name="message" Type="System.String" Index="0" />
<Parameter Name="message" Type="System.String" />
</Parameters>
<Docs>
<param name="message">Permission that is required.</param>

Просмотреть файл

@ -30,7 +30,7 @@
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="application" Type="Android.App.Application" />
<Parameter Name="application" Type="Android.App.Application" Index="0" FrameworkAlternate="xamarin-essentials-android" />
</Parameters>
<Docs>
<param name="application">Application to initialize with.</param>
@ -51,8 +51,8 @@
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="bundle" Type="Android.OS.Bundle" />
<Parameter Name="activity" Type="Android.App.Activity" Index="0" FrameworkAlternate="xamarin-essentials-android" />
<Parameter Name="bundle" Type="Android.OS.Bundle" Index="1" FrameworkAlternate="xamarin-essentials-android" />
</Parameters>
<Docs>
<param name="activity">Activity to use for initialization.</param>
@ -92,9 +92,9 @@
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="requestCode" Type="System.Int32" />
<Parameter Name="permissions" Type="System.String[]" />
<Parameter Name="grantResults" Type="Android.Content.PM.Permission[]" />
<Parameter Name="requestCode" Type="System.Int32" Index="0" FrameworkAlternate="xamarin-essentials-android" />
<Parameter Name="permissions" Type="System.String[]" Index="1" FrameworkAlternate="xamarin-essentials-android" />
<Parameter Name="grantResults" Type="Android.Content.PM.Permission[]" Index="2" FrameworkAlternate="xamarin-essentials-android" />
</Parameters>
<Docs>
<param name="requestCode">The requestCode from the corresponding overridden method in an activity.</param>

Просмотреть файл

@ -17,140 +17,6 @@
</remarks>
</Docs>
<Members>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static Android.Graphics.Point ToPlatformPoint (this System.Drawing.Point point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.Point ToPlatformPoint(valuetype System.Drawing.Point point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.Android.ToPlatformPoint(System.Drawing.Point)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Graphics.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.Point" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks>
<para></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGPoint ToPlatformPoint (this System.Drawing.Point point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGPoint ToPlatformPoint(valuetype System.Drawing.Point point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.iOS.ToPlatformPoint(System.Drawing.Point)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGPoint</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.Point" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Point ToPlatformPoint (this System.Drawing.Point point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Point ToPlatformPoint(valuetype System.Drawing.Point point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.UWP.ToPlatformPoint(System.Drawing.Point)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.Point" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGPoint ToPlatformPoint (this System.Drawing.PointF point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGPoint ToPlatformPoint(valuetype System.Drawing.PointF point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.iOS.ToPlatformPoint(System.Drawing.PointF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGPoint</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.PointF" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Point ToPlatformPoint (this System.Drawing.PointF point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Point ToPlatformPoint(valuetype System.Drawing.PointF point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.UWP.ToPlatformPoint(System.Drawing.PointF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.PointF" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformPointF">
<MemberSignature Language="C#" Value="public static Android.Graphics.PointF ToPlatformPointF (this System.Drawing.PointF point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.PointF ToPlatformPointF(valuetype System.Drawing.PointF point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.Android.ToPlatformPointF(System.Drawing.PointF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Graphics.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.PointF" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
<returns>The converted point.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToSystemPoint">
<MemberSignature Language="C#" Value="public static System.Drawing.Point ToSystemPoint (this Android.Graphics.Point point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Point ToSystemPoint(class Android.Graphics.Point point) cil managed" />
@ -164,7 +30,7 @@
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Android.Graphics.Point" RefType="this" />
<Parameter Name="point" Type="Android.Graphics.Point" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -186,7 +52,7 @@
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" />
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -208,7 +74,7 @@
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" />
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -230,7 +96,7 @@
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Android.Graphics.PointF" RefType="this" />
<Parameter Name="point" Type="Android.Graphics.PointF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -252,7 +118,7 @@
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" />
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -274,7 +140,7 @@
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" />
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>

Просмотреть файл

@ -17,138 +17,6 @@
</remarks>
</Docs>
<Members>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static Android.Graphics.Rect ToPlatformRectangle (this System.Drawing.Rectangle rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.Rect ToPlatformRectangle(valuetype System.Drawing.Rectangle rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.Android.ToPlatformRectangle(System.Drawing.Rectangle)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Graphics.Rect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.Rectangle" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGRect ToPlatformRectangle (this System.Drawing.Rectangle rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGRect ToPlatformRectangle(valuetype System.Drawing.Rectangle rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.iOS.ToPlatformRectangle(System.Drawing.Rectangle)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGRect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.Rectangle" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Rect ToPlatformRectangle (this System.Drawing.Rectangle rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Rect ToPlatformRectangle(valuetype System.Drawing.Rectangle rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.UWP.ToPlatformRectangle(System.Drawing.Rectangle)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Rect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.Rectangle" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGRect ToPlatformRectangle (this System.Drawing.RectangleF rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGRect ToPlatformRectangle(valuetype System.Drawing.RectangleF rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.iOS.ToPlatformRectangle(System.Drawing.RectangleF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGRect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.RectangleF" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Rect ToPlatformRectangle (this System.Drawing.RectangleF rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Rect ToPlatformRectangle(valuetype System.Drawing.RectangleF rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.UWP.ToPlatformRectangle(System.Drawing.RectangleF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Rect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.RectangleF" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformRectangleF">
<MemberSignature Language="C#" Value="public static Android.Graphics.RectF ToPlatformRectangleF (this System.Drawing.RectangleF rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.RectF ToPlatformRectangleF(valuetype System.Drawing.RectangleF rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.Android.ToPlatformRectangleF(System.Drawing.RectangleF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Graphics.RectF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.RectangleF" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
<returns>The converted rectangle.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToSystemRectangle">
<MemberSignature Language="C#" Value="public static System.Drawing.Rectangle ToSystemRectangle (this Android.Graphics.Rect rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Rectangle ToSystemRectangle(class Android.Graphics.Rect rect) cil managed" />
@ -162,7 +30,7 @@
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Android.Graphics.Rect" RefType="this" />
<Parameter Name="rect" Type="Android.Graphics.Rect" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -184,7 +52,7 @@
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" />
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -206,7 +74,7 @@
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" />
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -228,7 +96,7 @@
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Android.Graphics.RectF" RefType="this" />
<Parameter Name="rect" Type="Android.Graphics.RectF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -250,7 +118,7 @@
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" />
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -272,7 +140,7 @@
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" />
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>

Просмотреть файл

@ -146,9 +146,9 @@
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="key" Type="System.String" />
<Parameter Name="value" Type="System.String" />
<Parameter Name="accessible" Type="Security.SecAccessible" />
<Parameter Name="key" Type="System.String" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
<Parameter Name="value" Type="System.String" Index="1" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
<Parameter Name="accessible" Type="Security.SecAccessible" Index="2" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="key">Storage Key.</param>

Просмотреть файл

@ -17,138 +17,6 @@
</remarks>
</Docs>
<Members>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static Android.Util.Size ToPlatformSize (this System.Drawing.Size size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Util.Size ToPlatformSize(valuetype System.Drawing.Size size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.Android.ToPlatformSize(System.Drawing.Size)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Util.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.Size" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGSize ToPlatformSize (this System.Drawing.Size size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGSize ToPlatformSize(valuetype System.Drawing.Size size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.iOS.ToPlatformSize(System.Drawing.Size)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGSize</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.Size" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Size ToPlatformSize (this System.Drawing.Size size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Size ToPlatformSize(valuetype System.Drawing.Size size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.UWP.ToPlatformSize(System.Drawing.Size)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.Size" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGSize ToPlatformSize (this System.Drawing.SizeF size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGSize ToPlatformSize(valuetype System.Drawing.SizeF size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.iOS.ToPlatformSize(System.Drawing.SizeF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>CoreGraphics.CGSize</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.SizeF" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static Windows.Foundation.Size ToPlatformSize (this System.Drawing.SizeF size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Windows.Foundation.Size ToPlatformSize(valuetype System.Drawing.SizeF size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.UWP.ToPlatformSize(System.Drawing.SizeF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Windows.Foundation.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.SizeF" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToPlatformSizeF">
<MemberSignature Language="C#" Value="public static Android.Util.SizeF ToPlatformSizeF (this System.Drawing.SizeF size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Util.SizeF ToPlatformSizeF(valuetype System.Drawing.SizeF size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.Android.ToPlatformSizeF(System.Drawing.SizeF)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Android.Util.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.SizeF" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform SizeF.</summary>
<returns>Converted size.</returns>
<remarks></remarks>
</Docs>
</Member>
<Member MemberName="ToSystemSize">
<MemberSignature Language="C#" Value="public static System.Drawing.Size ToSystemSize (this Android.Util.Size size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Size ToSystemSize(class Android.Util.Size size) cil managed" />
@ -162,7 +30,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Android.Util.Size" RefType="this" />
<Parameter Name="size" Type="Android.Util.Size" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -184,7 +52,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" />
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -206,7 +74,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" />
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -228,7 +96,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Android.Util.SizeF" RefType="this" />
<Parameter Name="size" Type="Android.Util.SizeF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -250,7 +118,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" />
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -272,7 +140,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" />
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>

Просмотреть файл

@ -67,11 +67,6 @@
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Diagnostics.DebuggerStepThrough</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>

Просмотреть файл

@ -313,6 +313,28 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="InternationalFeetToMeters">
<MemberSignature Language="C#" Value="public static double InternationalFeetToMeters (double internationalFeet);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 InternationalFeetToMeters(float64 internationalFeet) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.UnitConverters.InternationalFeetToMeters(System.Double)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="internationalFeet" Type="System.Double" />
</Parameters>
<Docs>
<param name="internationalFeet">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="KelvinToCelsius">
<MemberSignature Language="C#" Value="public static double KelvinToCelsius (double kelvin);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 KelvinToCelsius(float64 kelvin) cil managed" />
@ -401,6 +423,50 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="MetersToInternationalFeet">
<MemberSignature Language="C#" Value="public static double MetersToInternationalFeet (double meters);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 MetersToInternationalFeet(float64 meters) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.UnitConverters.MetersToInternationalFeet(System.Double)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="meters" Type="System.Double" />
</Parameters>
<Docs>
<param name="meters">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="MetersToUSSurveyFeet">
<MemberSignature Language="C#" Value="public static double MetersToUSSurveyFeet (double meters);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 MetersToUSSurveyFeet(float64 meters) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.UnitConverters.MetersToUSSurveyFeet(System.Double)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="meters" Type="System.Double" />
</Parameters>
<Docs>
<param name="meters">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="MilesToKilometers">
<MemberSignature Language="C#" Value="public static double MilesToKilometers (double miles);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 MilesToKilometers(float64 miles) cil managed" />
@ -533,5 +599,27 @@
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="USSurveyFeetToMeters">
<MemberSignature Language="C#" Value="public static double USSurveyFeetToMeters (double usFeet);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 USSurveyFeetToMeters(float64 usFeet) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.UnitConverters.USSurveyFeetToMeters(System.Double)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Xamarin.Essentials</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="usFeet" Type="System.Double" />
</Parameters>
<Docs>
<param name="usFeet">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>

Просмотреть файл

@ -53,12 +53,6 @@
<Attribute FrameworkAlternate="xamarin-essentials-android">
<AttributeName>Android.Runtime.ResourceDesigner("Xamarin.Essentials.Resource", IsApplication=false)</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<AttributeName>System.Reflection.AssemblyProduct("Xamarin.Essentials (MonoAndroid81)")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<AttributeName>System.Runtime.Versioning.TargetFramework("MonoAndroid,Version=v8.1", FrameworkDisplayName="Xamarin.Android v8.1 Support")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos">
<AttributeName>Foundation.LinkerSafe</AttributeName>
</Attribute>
@ -80,9 +74,6 @@
<Attribute>
<AttributeName>System.Reflection.AssemblyConfiguration("Release")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.0.0+7ceee2ec3cc4caab1bb281521d7e9ecf471edc7a")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-tvos">
<AttributeName>System.Reflection.AssemblyProduct("Xamarin.Essentials (Xamarin.TVOS10)")</AttributeName>
</Attribute>
@ -95,6 +86,15 @@
<Attribute FrameworkAlternate="xamarin-essentials-watchos">
<AttributeName>System.Runtime.Versioning.TargetFramework("Xamarin.WatchOS,Version=v1.0", FrameworkDisplayName="Xamarin.WatchOS")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<AttributeName>System.Reflection.AssemblyProduct("Xamarin.Essentials (MonoAndroid90)")</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="xamarin-essentials-android">
<AttributeName>System.Runtime.Versioning.TargetFramework("MonoAndroid,Version=v9.0", FrameworkDisplayName="Xamarin.Android v9.0 Support")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.Reflection.AssemblyInformationalVersion("1.0.0+93121294be53f4171d1182fb463e3232d6d760c6")</AttributeName>
</Attribute>
</Attributes>
</Assembly>
</Assemblies>
@ -206,16 +206,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="AddLuminosity">
<MemberSignature Language="C#" Value="public static System.Drawing.Color AddLuminosity (this System.Drawing.Color color, float delta);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color AddLuminosity(valuetype System.Drawing.Color color, float32 delta) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color AddLuminosity (this System.Drawing.Color color, float delta);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color AddLuminosity(valuetype System.Drawing.Color color, float32 delta) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.AddLuminosity(System.Drawing.Color,System.Single)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="delta" Type="System.Single" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="delta" Type="System.Single" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The color to add luminosity to.</param>
@ -230,16 +230,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="MultiplyAlpha">
<MemberSignature Language="C#" Value="public static System.Drawing.Color MultiplyAlpha (this System.Drawing.Color color, float percentage);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color MultiplyAlpha(valuetype System.Drawing.Color color, float32 percentage) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color MultiplyAlpha (this System.Drawing.Color color, float percentage);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color MultiplyAlpha(valuetype System.Drawing.Color color, float32 percentage) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.MultiplyAlpha(System.Drawing.Color,System.Single)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="percentage" Type="System.Single" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="percentage" Type="System.Single" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The current color to manipulate.</param>
@ -254,15 +254,15 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="ToInt">
<MemberSignature Language="C#" Value="public static int ToInt (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 ToInt(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" />
<MemberSignature Language="C#" Value="public static int ToInt (this System.Drawing.Color color);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig int32 ToInt(valuetype System.Drawing.Color color) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToInt(System.Drawing.Color)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
</Parameters>
<Docs>
<param name="color">To be added.</param>
@ -275,23 +275,6 @@
<Targets>
<Target Type="T:System.Drawing.Color" />
</Targets>
<Member MemberName="ToPlatformColor">
<MemberSignature Language="C#" Value="public static Android.Graphics.Color ToPlatformColor (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype Android.Graphics.Color ToPlatformColor(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToPlatformColor(System.Drawing.Color)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Graphics.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
<summary>Converts the color to the platform specific color.</summary>
</Docs>
<Link Type="Xamarin.Essentials.ColorExtensions" Member="M:Xamarin.Essentials.ColorExtensions.ToPlatformColor(System.Drawing.Color)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
@ -306,7 +289,7 @@
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="Android.Graphics.Color" RefType="this" />
<Parameter Name="color" Type="Android.Graphics.Color" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-android" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -320,15 +303,15 @@
<Target Type="T:UIKit.UIColor" />
</Targets>
<Member MemberName="ToSystemColor">
<MemberSignature Language="C#" Value="public static System.Drawing.Color ToSystemColor (this UIKit.UIColor color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color ToSystemColor(class UIKit.UIColor color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(UIKit.UIColor)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color ToSystemColor (this UIKit.UIColor color);" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color ToSystemColor(class UIKit.UIColor color) cil managed" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToSystemColor(UIKit.UIColor)" FrameworkAlternate="xamarin-essentials-ios" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="UIKit.UIColor" RefType="this" />
<Parameter Name="color" Type="UIKit.UIColor" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -350,7 +333,7 @@
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="Windows.UI.Color" RefType="this" />
<Parameter Name="color" Type="Windows.UI.Color" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -364,15 +347,15 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="ToUInt">
<MemberSignature Language="C#" Value="public static uint ToUInt (this System.Drawing.Color color);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int32 ToUInt(valuetype System.Drawing.Color color) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" />
<MemberSignature Language="C#" Value="public static uint ToUInt (this System.Drawing.Color color);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int32 ToUInt(valuetype System.Drawing.Color color) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.ToUInt(System.Drawing.Color)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.UInt32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -386,16 +369,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="WithAlpha">
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithAlpha (this System.Drawing.Color color, int alpha);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithAlpha(valuetype System.Drawing.Color color, int32 alpha) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithAlpha (this System.Drawing.Color color, int alpha);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithAlpha(valuetype System.Drawing.Color color, int32 alpha) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithAlpha(System.Drawing.Color,System.Int32)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="alpha" Type="System.Int32" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="alpha" Type="System.Int32" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -410,16 +393,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="WithHue">
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithHue (this System.Drawing.Color color, float hue);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithHue(valuetype System.Drawing.Color color, float32 hue) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithHue(System.Drawing.Color,System.Single)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithHue (this System.Drawing.Color color, float hue);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithHue(valuetype System.Drawing.Color color, float32 hue) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithHue(System.Drawing.Color,System.Single)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="hue" Type="System.Single" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="hue" Type="System.Single" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -434,16 +417,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="WithLuminosity">
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithLuminosity (this System.Drawing.Color color, float luminosity);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithLuminosity(valuetype System.Drawing.Color color, float32 luminosity) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithLuminosity(System.Drawing.Color,System.Single)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithLuminosity (this System.Drawing.Color color, float luminosity);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithLuminosity(valuetype System.Drawing.Color color, float32 luminosity) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithLuminosity(System.Drawing.Color,System.Single)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="luminosity" Type="System.Single" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="luminosity" Type="System.Single" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -458,16 +441,16 @@
<Target Type="System.Drawing.Color" />
</Targets>
<Member MemberName="WithSaturation">
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithSaturation (this System.Drawing.Color color, float saturation);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithSaturation(valuetype System.Drawing.Color color, float32 saturation) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithSaturation(System.Drawing.Color,System.Single)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Color WithSaturation (this System.Drawing.Color color, float saturation);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Color WithSaturation(valuetype System.Drawing.Color color, float32 saturation) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.ColorExtensions.WithSaturation(System.Drawing.Color,System.Single)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Color</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="color" Type="System.Drawing.Color" RefType="this" />
<Parameter Name="saturation" Type="System.Single" />
<Parameter Name="color" Type="System.Drawing.Color" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="saturation" Type="System.Single" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="color">The color to use as a base.</param>
@ -482,18 +465,18 @@
<Target Type="T:Xamarin.Essentials.Location" />
</Targets>
<Member MemberName="CalculateDistance">
<MemberSignature Language="C#" Value="public static double CalculateDistance (this Xamarin.Essentials.Location locationStart, double latitudeEnd, double longitudeEnd, Xamarin.Essentials.DistanceUnits units);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 CalculateDistance(class Xamarin.Essentials.Location locationStart, float64 latitudeEnd, float64 longitudeEnd, valuetype Xamarin.Essentials.DistanceUnits units) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.CalculateDistance(Xamarin.Essentials.Location,System.Double,System.Double,Xamarin.Essentials.DistanceUnits)" />
<MemberSignature Language="C#" Value="public static double CalculateDistance (this Xamarin.Essentials.Location locationStart, double latitudeEnd, double longitudeEnd, Xamarin.Essentials.DistanceUnits units);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 CalculateDistance(class Xamarin.Essentials.Location locationStart, float64 latitudeEnd, float64 longitudeEnd, valuetype Xamarin.Essentials.DistanceUnits units) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.CalculateDistance(Xamarin.Essentials.Location,System.Double,System.Double,Xamarin.Essentials.DistanceUnits)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locationStart" Type="Xamarin.Essentials.Location" RefType="this" />
<Parameter Name="latitudeEnd" Type="System.Double" />
<Parameter Name="longitudeEnd" Type="System.Double" />
<Parameter Name="units" Type="Xamarin.Essentials.DistanceUnits" />
<Parameter Name="locationStart" Type="Xamarin.Essentials.Location" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="latitudeEnd" Type="System.Double" Index="1" FrameworkAlternate="xamarin-essentials" />
<Parameter Name="longitudeEnd" Type="System.Double" Index="2" FrameworkAlternate="xamarin-essentials" />
<Parameter Name="units" Type="Xamarin.Essentials.DistanceUnits" Index="3" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="locationStart">Start location to calculate from.</param>
@ -510,17 +493,17 @@
<Target Type="T:Xamarin.Essentials.Location" />
</Targets>
<Member MemberName="CalculateDistance">
<MemberSignature Language="C#" Value="public static double CalculateDistance (this Xamarin.Essentials.Location locationStart, Xamarin.Essentials.Location locationEnd, Xamarin.Essentials.DistanceUnits units);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 CalculateDistance(class Xamarin.Essentials.Location locationStart, class Xamarin.Essentials.Location locationEnd, valuetype Xamarin.Essentials.DistanceUnits units) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.CalculateDistance(Xamarin.Essentials.Location,Xamarin.Essentials.Location,Xamarin.Essentials.DistanceUnits)" />
<MemberSignature Language="C#" Value="public static double CalculateDistance (this Xamarin.Essentials.Location locationStart, Xamarin.Essentials.Location locationEnd, Xamarin.Essentials.DistanceUnits units);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 CalculateDistance(class Xamarin.Essentials.Location locationStart, class Xamarin.Essentials.Location locationEnd, valuetype Xamarin.Essentials.DistanceUnits units) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.CalculateDistance(Xamarin.Essentials.Location,Xamarin.Essentials.Location,Xamarin.Essentials.DistanceUnits)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="locationStart" Type="Xamarin.Essentials.Location" RefType="this" />
<Parameter Name="locationEnd" Type="Xamarin.Essentials.Location" />
<Parameter Name="units" Type="Xamarin.Essentials.DistanceUnits" />
<Parameter Name="locationStart" Type="Xamarin.Essentials.Location" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="locationEnd" Type="Xamarin.Essentials.Location" Index="1" FrameworkAlternate="xamarin-essentials" />
<Parameter Name="units" Type="Xamarin.Essentials.DistanceUnits" Index="2" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="locationStart">Start location to calculate from.</param>
@ -536,15 +519,15 @@
<Target Type="T:Xamarin.Essentials.Location" />
</Targets>
<Member MemberName="OpenMapsAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Location location);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Location location) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.OpenMapsAsync(Xamarin.Essentials.Location)" />
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Location location);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Location location) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.OpenMapsAsync(Xamarin.Essentials.Location)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="location" Type="Xamarin.Essentials.Location" RefType="this" />
<Parameter Name="location" Type="Xamarin.Essentials.Location" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
</Parameters>
<Docs>
<param name="location">Location to open to.</param>
@ -558,16 +541,16 @@
<Target Type="T:Xamarin.Essentials.Location" />
</Targets>
<Member MemberName="OpenMapsAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Location location, Xamarin.Essentials.MapLaunchOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Location location, class Xamarin.Essentials.MapLaunchOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.OpenMapsAsync(Xamarin.Essentials.Location,Xamarin.Essentials.MapLaunchOptions)" />
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Location location, Xamarin.Essentials.MapLaunchOptions options);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Location location, class Xamarin.Essentials.MapLaunchOptions options) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.LocationExtensions.OpenMapsAsync(Xamarin.Essentials.Location,Xamarin.Essentials.MapLaunchOptions)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="location" Type="Xamarin.Essentials.Location" RefType="this" />
<Parameter Name="options" Type="Xamarin.Essentials.MapLaunchOptions" />
<Parameter Name="location" Type="Xamarin.Essentials.Location" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="options" Type="Xamarin.Essentials.MapLaunchOptions" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="location">Location to open to.</param>
@ -582,15 +565,15 @@
<Target Type="T:Xamarin.Essentials.Placemark" />
</Targets>
<Member MemberName="OpenMapsAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Placemark placemark);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Placemark placemark) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PlacemarkExtensions.OpenMapsAsync(Xamarin.Essentials.Placemark)" />
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Placemark placemark);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Placemark placemark) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PlacemarkExtensions.OpenMapsAsync(Xamarin.Essentials.Placemark)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="placemark" Type="Xamarin.Essentials.Placemark" RefType="this" />
<Parameter Name="placemark" Type="Xamarin.Essentials.Placemark" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
</Parameters>
<Docs>
<param name="placemark">To be added.</param>
@ -604,16 +587,16 @@
<Target Type="T:Xamarin.Essentials.Placemark" />
</Targets>
<Member MemberName="OpenMapsAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Placemark placemark, Xamarin.Essentials.MapLaunchOptions options);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Placemark placemark, class Xamarin.Essentials.MapLaunchOptions options) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PlacemarkExtensions.OpenMapsAsync(Xamarin.Essentials.Placemark,Xamarin.Essentials.MapLaunchOptions)" />
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task OpenMapsAsync (this Xamarin.Essentials.Placemark placemark, Xamarin.Essentials.MapLaunchOptions options);" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task OpenMapsAsync(class Xamarin.Essentials.Placemark placemark, class Xamarin.Essentials.MapLaunchOptions options) cil managed" FrameworkAlternate="xamarin-essentials" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PlacemarkExtensions.OpenMapsAsync(Xamarin.Essentials.Placemark,Xamarin.Essentials.MapLaunchOptions)" FrameworkAlternate="xamarin-essentials" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="placemark" Type="Xamarin.Essentials.Placemark" RefType="this" />
<Parameter Name="options" Type="Xamarin.Essentials.MapLaunchOptions" />
<Parameter Name="placemark" Type="Xamarin.Essentials.Placemark" Index="0" FrameworkAlternate="xamarin-essentials" RefType="this" />
<Parameter Name="options" Type="Xamarin.Essentials.MapLaunchOptions" Index="1" FrameworkAlternate="xamarin-essentials" />
</Parameters>
<Docs>
<param name="placemark">To be added.</param>
@ -627,67 +610,16 @@
<Targets>
<Target Type="T:System.Drawing.Point" />
</Targets>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static Android.Graphics.Point ToPlatformPoint (this System.Drawing.Point point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.Point ToPlatformPoint(valuetype System.Drawing.Point point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.Point)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Graphics.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.Point" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
</Docs>
<Link Type="Xamarin.Essentials.PointExtensions" Member="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.Point)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.PointF" />
</Targets>
<Member MemberName="ToPlatformPoint">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGPoint ToPlatformPoint (this System.Drawing.PointF point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGPoint ToPlatformPoint(valuetype System.Drawing.PointF point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.PointF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>CoreGraphics.CGPoint</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.PointF" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
</Docs>
<Link Type="Xamarin.Essentials.PointExtensions" Member="M:Xamarin.Essentials.PointExtensions.ToPlatformPoint(System.Drawing.PointF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.PointF" />
</Targets>
<Member MemberName="ToPlatformPointF">
<MemberSignature Language="C#" Value="public static Android.Graphics.PointF ToPlatformPointF (this System.Drawing.PointF point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.PointF ToPlatformPointF(valuetype System.Drawing.PointF point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToPlatformPointF(System.Drawing.PointF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Graphics.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="System.Drawing.PointF" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
<summary>Converts the point ot the platform representation.</summary>
</Docs>
<Link Type="Xamarin.Essentials.PointExtensions" Member="M:Xamarin.Essentials.PointExtensions.ToPlatformPointF(System.Drawing.PointF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
@ -702,7 +634,7 @@
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Android.Graphics.Point" RefType="this" />
<Parameter Name="point" Type="Android.Graphics.Point" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -716,15 +648,15 @@
<Target Type="T:CoreGraphics.CGPoint" />
</Targets>
<Member MemberName="ToSystemPoint">
<MemberSignature Language="C#" Value="public static System.Drawing.Point ToSystemPoint (this CoreGraphics.CGPoint point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Point ToSystemPoint(valuetype CoreGraphics.CGPoint point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(CoreGraphics.CGPoint)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Point ToSystemPoint (this CoreGraphics.CGPoint point);" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Point ToSystemPoint(valuetype CoreGraphics.CGPoint point) cil managed" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToSystemPoint(CoreGraphics.CGPoint)" FrameworkAlternate="xamarin-essentials-ios" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" />
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -746,7 +678,7 @@
<ReturnType>System.Drawing.Point</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" />
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -768,7 +700,7 @@
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Android.Graphics.PointF" RefType="this" />
<Parameter Name="point" Type="Android.Graphics.PointF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -782,15 +714,15 @@
<Target Type="T:CoreGraphics.CGPoint" />
</Targets>
<Member MemberName="ToSystemPointF">
<MemberSignature Language="C#" Value="public static System.Drawing.PointF ToSystemPointF (this CoreGraphics.CGPoint point);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.PointF ToSystemPointF(valuetype CoreGraphics.CGPoint point) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(CoreGraphics.CGPoint)" />
<MemberSignature Language="C#" Value="public static System.Drawing.PointF ToSystemPointF (this CoreGraphics.CGPoint point);" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.PointF ToSystemPointF(valuetype CoreGraphics.CGPoint point) cil managed" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.PointExtensions.ToSystemPointF(CoreGraphics.CGPoint)" FrameworkAlternate="xamarin-essentials-ios" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" />
<Parameter Name="point" Type="CoreGraphics.CGPoint" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -812,7 +744,7 @@
<ReturnType>System.Drawing.PointF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" />
<Parameter Name="point" Type="Windows.Foundation.Point" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="point">The point to convert.</param>
@ -825,67 +757,16 @@
<Targets>
<Target Type="T:System.Drawing.Rectangle" />
</Targets>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static Android.Graphics.Rect ToPlatformRectangle (this System.Drawing.Rectangle rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.Rect ToPlatformRectangle(valuetype System.Drawing.Rectangle rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.Rectangle)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Graphics.Rect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.Rectangle" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
</Docs>
<Link Type="Xamarin.Essentials.RectangleExtensions" Member="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.Rectangle)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.RectangleF" />
</Targets>
<Member MemberName="ToPlatformRectangle">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGRect ToPlatformRectangle (this System.Drawing.RectangleF rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGRect ToPlatformRectangle(valuetype System.Drawing.RectangleF rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.RectangleF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>CoreGraphics.CGRect</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.RectangleF" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
</Docs>
<Link Type="Xamarin.Essentials.RectangleExtensions" Member="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangle(System.Drawing.RectangleF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.RectangleF" />
</Targets>
<Member MemberName="ToPlatformRectangleF">
<MemberSignature Language="C#" Value="public static Android.Graphics.RectF ToPlatformRectangleF (this System.Drawing.RectangleF rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Graphics.RectF ToPlatformRectangleF(valuetype System.Drawing.RectangleF rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangleF(System.Drawing.RectangleF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Graphics.RectF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="System.Drawing.RectangleF" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
<summary>Convert to platform rectangle.</summary>
</Docs>
<Link Type="Xamarin.Essentials.RectangleExtensions" Member="M:Xamarin.Essentials.RectangleExtensions.ToPlatformRectangleF(System.Drawing.RectangleF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
@ -900,7 +781,7 @@
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Android.Graphics.Rect" RefType="this" />
<Parameter Name="rect" Type="Android.Graphics.Rect" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -914,15 +795,15 @@
<Target Type="T:CoreGraphics.CGRect" />
</Targets>
<Member MemberName="ToSystemRectangle">
<MemberSignature Language="C#" Value="public static System.Drawing.Rectangle ToSystemRectangle (this CoreGraphics.CGRect rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Rectangle ToSystemRectangle(valuetype CoreGraphics.CGRect rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(CoreGraphics.CGRect)" />
<MemberSignature Language="C#" Value="public static System.Drawing.Rectangle ToSystemRectangle (this CoreGraphics.CGRect rect);" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.Rectangle ToSystemRectangle(valuetype CoreGraphics.CGRect rect) cil managed" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangle(CoreGraphics.CGRect)" FrameworkAlternate="xamarin-essentials-ios" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" />
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -944,7 +825,7 @@
<ReturnType>System.Drawing.Rectangle</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" />
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -966,7 +847,7 @@
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Android.Graphics.RectF" RefType="this" />
<Parameter Name="rect" Type="Android.Graphics.RectF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -980,15 +861,15 @@
<Target Type="T:CoreGraphics.CGRect" />
</Targets>
<Member MemberName="ToSystemRectangleF">
<MemberSignature Language="C#" Value="public static System.Drawing.RectangleF ToSystemRectangleF (this CoreGraphics.CGRect rect);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.RectangleF ToSystemRectangleF(valuetype CoreGraphics.CGRect rect) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(CoreGraphics.CGRect)" />
<MemberSignature Language="C#" Value="public static System.Drawing.RectangleF ToSystemRectangleF (this CoreGraphics.CGRect rect);" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Drawing.RectangleF ToSystemRectangleF(valuetype CoreGraphics.CGRect rect) cil managed" FrameworkAlternate="xamarin-essentials-ios" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.RectangleExtensions.ToSystemRectangleF(CoreGraphics.CGRect)" FrameworkAlternate="xamarin-essentials-ios" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" />
<Parameter Name="rect" Type="CoreGraphics.CGRect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios;xamarin-essentials-tvos;xamarin-essentials-watchos" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -1010,7 +891,7 @@
<ReturnType>System.Drawing.RectangleF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" />
<Parameter Name="rect" Type="Windows.Foundation.Rect" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="rect">The base rectangle to convert.</param>
@ -1023,71 +904,20 @@
<Targets>
<Target Type="T:System.Drawing.Size" />
</Targets>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static Android.Util.Size ToPlatformSize (this System.Drawing.Size size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Util.Size ToPlatformSize(valuetype System.Drawing.Size size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.ToPlatformSize(System.Drawing.Size)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Util.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.Size" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
</Docs>
<Link Type="Xamarin.Essentials.SizeExtensions" Member="M:Xamarin.Essentials.SizeExtensions.ToPlatformSize(System.Drawing.Size)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.SizeF" />
</Targets>
<Member MemberName="ToPlatformSize">
<MemberSignature Language="C#" Value="public static CoreGraphics.CGSize ToPlatformSize (this System.Drawing.SizeF size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype CoreGraphics.CGSize ToPlatformSize(valuetype System.Drawing.SizeF size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.ToPlatformSize(System.Drawing.SizeF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>CoreGraphics.CGSize</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.SizeF" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform Size.</summary>
</Docs>
<Link Type="Xamarin.Essentials.SizeExtensions" Member="M:Xamarin.Essentials.SizeExtensions.ToPlatformSize(System.Drawing.SizeF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="T:System.Drawing.SizeF" />
</Targets>
<Member MemberName="ToPlatformSizeF">
<MemberSignature Language="C#" Value="public static Android.Util.SizeF ToPlatformSizeF (this System.Drawing.SizeF size);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.Util.SizeF ToPlatformSizeF(valuetype System.Drawing.SizeF size) cil managed" />
<MemberSignature Language="DocId" Value="M:Xamarin.Essentials.SizeExtensions.ToPlatformSizeF(System.Drawing.SizeF)" />
<MemberType>ExtensionMethod</MemberType>
<ReturnValue>
<ReturnType>Android.Util.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="System.Drawing.SizeF" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
<summary>Convert to platform SizeF.</summary>
</Docs>
<Link Type="Xamarin.Essentials.SizeExtensions" Member="M:Xamarin.Essentials.SizeExtensions.ToPlatformSizeF(System.Drawing.SizeF)" />
</Member>
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="Android.Util.Size" />
<Target Type="T:Android.Util.Size" />
</Targets>
<Member MemberName="ToSystemSize">
<MemberSignature Language="C#" Value="public static System.Drawing.Size ToSystemSize (this Android.Util.Size size);" />
@ -1098,7 +928,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Android.Util.Size" RefType="this" />
<Parameter Name="size" Type="Android.Util.Size" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -1120,7 +950,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" />
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -1142,7 +972,7 @@
<ReturnType>System.Drawing.Size</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" />
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -1153,7 +983,7 @@
</ExtensionMethod>
<ExtensionMethod>
<Targets>
<Target Type="Android.Util.SizeF" />
<Target Type="T:Android.Util.SizeF" />
</Targets>
<Member MemberName="ToSystemSizeF">
<MemberSignature Language="C#" Value="public static System.Drawing.SizeF ToSystemSizeF (this Android.Util.SizeF size);" />
@ -1164,7 +994,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Android.Util.SizeF" RefType="this" />
<Parameter Name="size" Type="Android.Util.SizeF" Index="0" FrameworkAlternate="xamarin-essentials-android" RefType="this" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -1186,7 +1016,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" />
<Parameter Name="size" Type="CoreGraphics.CGSize" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-ios" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>
@ -1208,7 +1038,7 @@
<ReturnType>System.Drawing.SizeF</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" />
<Parameter Name="size" Type="Windows.Foundation.Size" RefType="this" Index="0" FrameworkAlternate="xamarin-essentials-uwp" />
</Parameters>
<Docs>
<param name="size">Base size to convert.</param>

Просмотреть файл

@ -1 +1 @@
msbuild /restore /t:rebuild;mdocupdatedocs /p:Configuration=Docs /p:ContinuousIntegrationBuild=false Xamarin.Essentials/Xamarin.Essentials.csproj
msbuild /r /v:m /t:rebuild;mdocupdatedocs /p:Configuration=Release /p:ContinuousIntegrationBuild=false Xamarin.Essentials/Xamarin.Essentials.csproj