Changes in csprojs
This commit is contained in:
parent
cc3b010fcb
commit
c22a443cfd
@ -1,34 +1,322 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
||||||
<PackageTargetFallback>portable-net45+win8+wpa81+wp8</PackageTargetFallback>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<DebugType>full</DebugType>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<ProjectGuid>{67F9D3A8-F71E-4428-913F-C37AE82CDB24}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>eShopOnContainers.Core</RootNamespace>
|
||||||
|
<AssemblyName>eShopOnContainers.Core</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
|
<NuGetPackageImportStamp>
|
||||||
|
</NuGetPackageImportStamp>
|
||||||
|
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Acr.UserDialogs" Version="6.3.3" />
|
<Compile Include="Animations\Base\AnimationBase.cs" />
|
||||||
<PackageReference Include="Autofac" Version="4.5.0" />
|
<Compile Include="Animations\Base\EasingType.cs" />
|
||||||
<PackageReference Include="IdentityModel" Version="2.10.0" />
|
<Compile Include="Animations\FadeToAnimation.cs" />
|
||||||
<PackageReference Include="Microsoft.NETCore.Platforms" Version="2.0.0" />
|
<Compile Include="Animations\StoryBoard.cs" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
<Compile Include="App.xaml.cs">
|
||||||
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
<PackageReference Include="SlideOverKit" Version="2.1.4" />
|
</Compile>
|
||||||
<PackageReference Include="Splat" Version="1.6.2" />
|
<Compile Include="Behaviors\Base\BindableBehavior.cs" />
|
||||||
<PackageReference Include="System.ComponentModel.Annotations" Version="4.4.0" />
|
<Compile Include="Behaviors\EventToCommandBehavior.cs" />
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator" Version="3.0.4" />
|
<Compile Include="Controls\AddBasketButton.xaml.cs">
|
||||||
<PackageReference Include="Xam.Plugins.Settings" Version="2.6.0.12-beta" />
|
<DependentUpon>AddBasketButton.xaml</DependentUpon>
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms" Version="2.2.9" />
|
</Compile>
|
||||||
<PackageReference Include="Xamarin.Forms" Version="2.3.4.231" />
|
<Compile Include="Controls\CustomTabbedPage.cs" />
|
||||||
|
<Compile Include="Controls\ToggleButton.cs" />
|
||||||
|
<Compile Include="Converters\DoubleConverter.cs" />
|
||||||
|
<Compile Include="Converters\StringNullOrEmptyBoolConverter.cs" />
|
||||||
|
<Compile Include="Converters\CountToBoolConverter.cs" />
|
||||||
|
<Compile Include="Converters\DatetimeConverter.cs" />
|
||||||
|
<Compile Include="Converters\ImageConverter.cs" />
|
||||||
|
<Compile Include="Converters\InverseBoolConverter.cs" />
|
||||||
|
<Compile Include="Converters\InverseCountToBoolConverter.cs" />
|
||||||
|
<Compile Include="Converters\ItemsToHeightConverter.cs" />
|
||||||
|
<Compile Include="Converters\ItemTappedEventArgsConverter.cs" />
|
||||||
|
<Compile Include="Converters\ToUpperConverter.cs" />
|
||||||
|
<Compile Include="Converters\WebNavigatedEventArgsConverter.cs" />
|
||||||
|
<Compile Include="Exceptions\ServiceAuthenticationException.cs" />
|
||||||
|
<Compile Include="Extensions\ObservableExtension.cs" />
|
||||||
|
<Compile Include="GlobalSettings.cs" />
|
||||||
|
<Compile Include="Helpers\EasingHelper.cs" />
|
||||||
|
<Compile Include="Helpers\RandomNumberGenerator.cs" />
|
||||||
|
<Compile Include="Helpers\ServicesHelper.cs" />
|
||||||
|
<Compile Include="Helpers\Settings.cs" />
|
||||||
|
<Compile Include="Models\Basket\BasketCheckout.cs" />
|
||||||
|
<Compile Include="Models\Basket\BasketItem.cs" />
|
||||||
|
<Compile Include="Models\Basket\CustomerBasket.cs" />
|
||||||
|
<Compile Include="Models\Catalog\CatalogBrand.cs" />
|
||||||
|
<Compile Include="Models\Catalog\CatalogItem.cs" />
|
||||||
|
<Compile Include="Models\Catalog\CatalogRoot.cs" />
|
||||||
|
<Compile Include="Models\Catalog\CatalogType.cs" />
|
||||||
|
<Compile Include="Models\Location\Location.cs" />
|
||||||
|
<Compile Include="Models\Marketing\CampaignItem.cs" />
|
||||||
|
<Compile Include="Models\Marketing\CampaignRoot.cs" />
|
||||||
|
<Compile Include="Models\Navigation\TabParameter.cs" />
|
||||||
|
<Compile Include="Models\Orders\CancelOrderCommand.cs" />
|
||||||
|
<Compile Include="Models\Orders\CardType.CS" />
|
||||||
|
<Compile Include="Models\Orders\Order.cs" />
|
||||||
|
<Compile Include="Models\Orders\OrderItem.cs" />
|
||||||
|
<Compile Include="Models\Orders\OrderStatus.cs" />
|
||||||
|
<Compile Include="Models\User\Address.cs" />
|
||||||
|
<Compile Include="Models\User\LogoutParameter.cs" />
|
||||||
|
<Compile Include="Models\User\PaymentInfo.cs" />
|
||||||
|
<Compile Include="Models\User\UserInfo.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Services\Basket\BasketMockService.cs" />
|
||||||
|
<Compile Include="Services\Basket\BasketService.cs" />
|
||||||
|
<Compile Include="Services\Basket\IBasketService.cs" />
|
||||||
|
<Compile Include="Services\Catalog\CatalogMockService.cs" />
|
||||||
|
<Compile Include="Services\Catalog\CatalogService.cs" />
|
||||||
|
<Compile Include="Services\Catalog\ICatalogService.cs" />
|
||||||
|
<Compile Include="Services\Common\Common.cs" />
|
||||||
|
<Compile Include="Services\Dialog\DialogService.cs" />
|
||||||
|
<Compile Include="Services\Dialog\IDialogService.cs" />
|
||||||
|
<Compile Include="Services\Identity\IdentityService.cs" />
|
||||||
|
<Compile Include="Services\Identity\IIdentityService.cs" />
|
||||||
|
<Compile Include="Services\Location\ILocationService.cs" />
|
||||||
|
<Compile Include="Services\Location\LocationService.cs" />
|
||||||
|
<Compile Include="Services\Marketing\ICampaignService.cs" />
|
||||||
|
<Compile Include="Services\Marketing\CampaignMockService.cs" />
|
||||||
|
<Compile Include="Services\Marketing\CampaignService.cs" />
|
||||||
|
<Compile Include="Services\Navigation\INavigationService.cs" />
|
||||||
|
<Compile Include="Services\Navigation\NavigationService.cs" />
|
||||||
|
<Compile Include="Services\OpenUrl\IOpenUrlService.cs" />
|
||||||
|
<Compile Include="Services\OpenUrl\OpenUrlService.cs" />
|
||||||
|
<Compile Include="Services\Order\IOrderService.cs" />
|
||||||
|
<Compile Include="Services\Order\OrderMockService.cs" />
|
||||||
|
<Compile Include="Services\Order\OrderService.cs" />
|
||||||
|
<Compile Include="Services\RequestProvider\HttpRequestExceptionEx.cs" />
|
||||||
|
<Compile Include="Services\RequestProvider\IRequestProvider.cs" />
|
||||||
|
<Compile Include="Services\RequestProvider\RequestProvider.cs" />
|
||||||
|
<Compile Include="Services\User\IUserService.cs" />
|
||||||
|
<Compile Include="Services\User\UserMockService.cs" />
|
||||||
|
<Compile Include="Services\User\UserService.cs" />
|
||||||
|
<Compile Include="Triggers\BeginAnimation.cs" />
|
||||||
|
<Compile Include="Validations\IsNotNullOrEmptyRule.cs" />
|
||||||
|
<Compile Include="Validations\IValidationRule.cs" />
|
||||||
|
<Compile Include="Validations\IValidity.cs" />
|
||||||
|
<Compile Include="Validations\ValidatableObject.cs" />
|
||||||
|
<Compile Include="ViewModels\Base\ExtendedBindableObject.cs" />
|
||||||
|
<Compile Include="ViewModels\Base\MessageKeys.cs" />
|
||||||
|
<Compile Include="ViewModels\Base\ViewModelBase.cs" />
|
||||||
|
<Compile Include="ViewModels\Base\ViewModelLocator.cs" />
|
||||||
|
<Compile Include="ViewModels\BasketViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\CampaignDetailsViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\CampaignViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\CatalogViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\CheckoutViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\LoginViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\MainViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\OrderDetailViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\ProfileViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\SettingsViewModel.cs" />
|
||||||
|
<Compile Include="Views\BasketView.xaml.cs">
|
||||||
|
<DependentUpon>BasketView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\CampaignView.xaml.cs">
|
||||||
|
<DependentUpon>CampaignView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\CatalogView.xaml.cs">
|
||||||
|
<DependentUpon>CatalogView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\CampaignDetailsView.xaml.cs">
|
||||||
|
<DependentUpon>CampaignDetailsView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\CheckoutView.xaml.cs">
|
||||||
|
<DependentUpon>CheckoutView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\CustomNavigationView.xaml.cs">
|
||||||
|
<DependentUpon>CustomNavigationView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\FiltersView.xaml.cs">
|
||||||
|
<DependentUpon>FiltersView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\LoginView.xaml.cs">
|
||||||
|
<DependentUpon>LoginView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\MainView.xaml.cs">
|
||||||
|
<DependentUpon>MainView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\OrderDetailView.xaml.cs">
|
||||||
|
<DependentUpon>OrderDetailView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\ProfileView.xaml.cs">
|
||||||
|
<DependentUpon>ProfileView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\SettingsView.xaml.cs">
|
||||||
|
<DependentUpon>SettingsView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\Templates\BasketItemTemplate.xaml.cs">
|
||||||
|
<DependentUpon>BasketItemTemplate.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\Templates\OrderItemTemplate.xaml.cs">
|
||||||
|
<DependentUpon>OrderItemTemplate.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\Templates\OrderTemplate.xaml.cs">
|
||||||
|
<DependentUpon>OrderTemplate.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\Templates\CampaignTemplate.xaml.cs">
|
||||||
|
<DependentUpon>CampaignTemplate.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\Templates\ProductTemplate.xaml.cs">
|
||||||
|
<DependentUpon>ProductTemplate.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Converters\WebNavigatingEventArgsConverter.cs" />
|
||||||
|
<Compile Include="Converters\FirstValidationErrorConverter.cs" />
|
||||||
|
<Compile Include="Effects\EntryLineColorEffect.cs" />
|
||||||
|
<Compile Include="Behaviors\LineColorBehavior.cs" />
|
||||||
|
<Compile Include="Models\Token\UserToken.cs" />
|
||||||
|
<Compile Include="Effects\ThemeEffects.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!-- https://bugzilla.xamarin.com/show_bug.cgi?id=55591 -->
|
<None Include="app.config" />
|
||||||
<None Remove="**\*.xaml" />
|
<None Include="project.json" />
|
||||||
|
|
||||||
<Compile Update="**\*.xaml.cs" DependentUpon="%(Filename)" />
|
|
||||||
<EmbeddedResource Include="**\*.xaml" SubType="Designer" Generator="MSBuild:UpdateDesignTimeXaml" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Controls\AddBasketButton.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Views\Templates\BasketItemTemplate.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Views\Templates\OrderItemTemplate.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Views\Templates\OrderTemplate.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Views\Templates\ProductTemplate.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\BasketView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\CatalogView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\CheckoutView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\CustomNavigationView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\FiltersView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\LoginView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\MainView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\OrderDetailView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\ProfileView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\SettingsView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="App.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\CampaignView.xaml">
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\CampaignDetailsView.xaml">
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Views\Templates\CampaignTemplate.xaml">
|
||||||
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets'))" />
|
||||||
|
</Target>
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
</Project>
|
</Project>
|
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"Acr.UserDialogs": "6.3.3",
|
||||||
|
"Autofac": "4.5.0",
|
||||||
|
"IdentityModel": "1.3.1",
|
||||||
|
"Microsoft.Bcl": "1.1.10",
|
||||||
|
"Microsoft.Bcl.Build": "1.0.21",
|
||||||
|
"Microsoft.Net.Http": "2.2.29",
|
||||||
|
"modernhttpclient": "2.4.2",
|
||||||
|
"Newtonsoft.Json": "9.0.1",
|
||||||
|
"PCLCrypto": "2.0.147",
|
||||||
|
"SlideOverKit": "2.1.4",
|
||||||
|
"Splat": "1.6.2",
|
||||||
|
"System.ComponentModel.Annotations": "4.3.0",
|
||||||
|
"Xam.Plugin.Geolocator": "3.0.4",
|
||||||
|
"Xam.Plugins.Settings": "2.6.0.12-beta",
|
||||||
|
"Xamarin.FFImageLoading": "2.2.9",
|
||||||
|
"Xamarin.FFImageLoading.Forms": "2.2.9",
|
||||||
|
"Xamarin.Forms": "2.3.4.231"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
".NETPortable,Version=v4.5,Profile=Profile111": {}
|
||||||
|
}
|
||||||
|
}
|
@ -1,15 +1,15 @@
|
|||||||
#pragma warning disable 1591
|
#pragma warning disable 1591
|
||||||
// ------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <autogenerated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
// Mono Runtime Version: 4.0.30319.42000
|
// Runtime Version:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
// </autogenerated>
|
// </auto-generated>
|
||||||
// ------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
[assembly: Android.Runtime.ResourceDesignerAttribute("eShopOnContainers.Droid.Resource", IsApplication=true)]
|
[assembly: global::Android.Runtime.ResourceDesignerAttribute("eShopOnContainers.Droid.Resource", IsApplication=true)]
|
||||||
|
|
||||||
namespace eShopOnContainers.Droid
|
namespace eShopOnContainers.Droid
|
||||||
{
|
{
|
||||||
@ -4399,8 +4399,7 @@ namespace eShopOnContainers.Droid
|
|||||||
public partial class Styleable
|
public partial class Styleable
|
||||||
{
|
{
|
||||||
|
|
||||||
public static int[] ActionBar = new int[]
|
public static int[] ActionBar = new int[] {
|
||||||
{
|
|
||||||
2130772007,
|
2130772007,
|
||||||
2130772009,
|
2130772009,
|
||||||
2130772010,
|
2130772010,
|
||||||
@ -4510,15 +4509,13 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 5
|
// aapt resource value: 5
|
||||||
public const int ActionBar_titleTextStyle = 5;
|
public const int ActionBar_titleTextStyle = 5;
|
||||||
|
|
||||||
public static int[] ActionBarLayout = new int[]
|
public static int[] ActionBarLayout = new int[] {
|
||||||
{
|
|
||||||
16842931};
|
16842931};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int ActionBarLayout_android_layout_gravity = 0;
|
public const int ActionBarLayout_android_layout_gravity = 0;
|
||||||
|
|
||||||
public static int[] ActionMenuItemView = new int[]
|
public static int[] ActionMenuItemView = new int[] {
|
||||||
{
|
|
||||||
16843071};
|
16843071};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
@ -4526,8 +4523,7 @@ namespace eShopOnContainers.Droid
|
|||||||
|
|
||||||
public static int[] ActionMenuView;
|
public static int[] ActionMenuView;
|
||||||
|
|
||||||
public static int[] ActionMode = new int[]
|
public static int[] ActionMode = new int[] {
|
||||||
{
|
|
||||||
2130772007,
|
2130772007,
|
||||||
2130772013,
|
2130772013,
|
||||||
2130772014,
|
2130772014,
|
||||||
@ -4553,8 +4549,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int ActionMode_titleTextStyle = 1;
|
public const int ActionMode_titleTextStyle = 1;
|
||||||
|
|
||||||
public static int[] ActivityChooserView = new int[]
|
public static int[] ActivityChooserView = new int[] {
|
||||||
{
|
|
||||||
2130772035,
|
2130772035,
|
||||||
2130772036};
|
2130772036};
|
||||||
|
|
||||||
@ -4564,8 +4559,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int ActivityChooserView_initialActivityCount = 0;
|
public const int ActivityChooserView_initialActivityCount = 0;
|
||||||
|
|
||||||
public static int[] AlertDialog = new int[]
|
public static int[] AlertDialog = new int[] {
|
||||||
{
|
|
||||||
16842994,
|
16842994,
|
||||||
2130772037,
|
2130772037,
|
||||||
2130772038,
|
2130772038,
|
||||||
@ -4591,8 +4585,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 4
|
// aapt resource value: 4
|
||||||
public const int AlertDialog_singleChoiceItemLayout = 4;
|
public const int AlertDialog_singleChoiceItemLayout = 4;
|
||||||
|
|
||||||
public static int[] AppBarLayout = new int[]
|
public static int[] AppBarLayout = new int[] {
|
||||||
{
|
|
||||||
16842964,
|
16842964,
|
||||||
2130772032,
|
2130772032,
|
||||||
2130772215};
|
2130772215};
|
||||||
@ -4606,8 +4599,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int AppBarLayout_expanded = 2;
|
public const int AppBarLayout_expanded = 2;
|
||||||
|
|
||||||
public static int[] AppBarLayout_LayoutParams = new int[]
|
public static int[] AppBarLayout_LayoutParams = new int[] {
|
||||||
{
|
|
||||||
2130772216,
|
2130772216,
|
||||||
2130772217};
|
2130772217};
|
||||||
|
|
||||||
@ -4617,8 +4609,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
|
public const int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1;
|
||||||
|
|
||||||
public static int[] AppCompatImageView = new int[]
|
public static int[] AppCompatImageView = new int[] {
|
||||||
{
|
|
||||||
16843033,
|
16843033,
|
||||||
2130772042};
|
2130772042};
|
||||||
|
|
||||||
@ -4628,8 +4619,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int AppCompatImageView_srcCompat = 1;
|
public const int AppCompatImageView_srcCompat = 1;
|
||||||
|
|
||||||
public static int[] AppCompatTextView = new int[]
|
public static int[] AppCompatTextView = new int[] {
|
||||||
{
|
|
||||||
16842804,
|
16842804,
|
||||||
2130772043};
|
2130772043};
|
||||||
|
|
||||||
@ -4639,8 +4629,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int AppCompatTextView_textAllCaps = 1;
|
public const int AppCompatTextView_textAllCaps = 1;
|
||||||
|
|
||||||
public static int[] AppCompatTheme = new int[]
|
public static int[] AppCompatTheme = new int[] {
|
||||||
{
|
|
||||||
16842839,
|
16842839,
|
||||||
16842926,
|
16842926,
|
||||||
2130772044,
|
2130772044,
|
||||||
@ -5090,8 +5079,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 3
|
// aapt resource value: 3
|
||||||
public const int AppCompatTheme_windowNoTitle = 3;
|
public const int AppCompatTheme_windowNoTitle = 3;
|
||||||
|
|
||||||
public static int[] BottomSheetBehavior_Params = new int[]
|
public static int[] BottomSheetBehavior_Params = new int[] {
|
||||||
{
|
|
||||||
2130772218,
|
2130772218,
|
||||||
2130772219};
|
2130772219};
|
||||||
|
|
||||||
@ -5101,15 +5089,13 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int BottomSheetBehavior_Params_behavior_peekHeight = 0;
|
public const int BottomSheetBehavior_Params_behavior_peekHeight = 0;
|
||||||
|
|
||||||
public static int[] ButtonBarLayout = new int[]
|
public static int[] ButtonBarLayout = new int[] {
|
||||||
{
|
|
||||||
2130772154};
|
2130772154};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int ButtonBarLayout_allowStacking = 0;
|
public const int ButtonBarLayout_allowStacking = 0;
|
||||||
|
|
||||||
public static int[] CardView = new int[]
|
public static int[] CardView = new int[] {
|
||||||
{
|
|
||||||
16843071,
|
16843071,
|
||||||
16843072,
|
16843072,
|
||||||
2130771995,
|
2130771995,
|
||||||
@ -5163,8 +5149,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 11
|
// aapt resource value: 11
|
||||||
public const int CardView_contentPaddingTop = 11;
|
public const int CardView_contentPaddingTop = 11;
|
||||||
|
|
||||||
public static int[] CollapsingAppBarLayout_LayoutParams = new int[]
|
public static int[] CollapsingAppBarLayout_LayoutParams = new int[] {
|
||||||
{
|
|
||||||
2130772220,
|
2130772220,
|
||||||
2130772221};
|
2130772221};
|
||||||
|
|
||||||
@ -5174,8 +5159,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
|
public const int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1;
|
||||||
|
|
||||||
public static int[] CollapsingToolbarLayout = new int[]
|
public static int[] CollapsingToolbarLayout = new int[] {
|
||||||
{
|
|
||||||
2130772009,
|
2130772009,
|
||||||
2130772222,
|
2130772222,
|
||||||
2130772223,
|
2130772223,
|
||||||
@ -5233,8 +5217,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 10
|
// aapt resource value: 10
|
||||||
public const int CollapsingToolbarLayout_toolbarId = 10;
|
public const int CollapsingToolbarLayout_toolbarId = 10;
|
||||||
|
|
||||||
public static int[] CompoundButton = new int[]
|
public static int[] CompoundButton = new int[] {
|
||||||
{
|
|
||||||
16843015,
|
16843015,
|
||||||
2130772155,
|
2130772155,
|
||||||
2130772156};
|
2130772156};
|
||||||
@ -5248,8 +5231,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int CompoundButton_buttonTintMode = 2;
|
public const int CompoundButton_buttonTintMode = 2;
|
||||||
|
|
||||||
public static int[] CoordinatorLayout = new int[]
|
public static int[] CoordinatorLayout = new int[] {
|
||||||
{
|
|
||||||
2130772235,
|
2130772235,
|
||||||
2130772236};
|
2130772236};
|
||||||
|
|
||||||
@ -5259,8 +5241,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int CoordinatorLayout_statusBarBackground = 1;
|
public const int CoordinatorLayout_statusBarBackground = 1;
|
||||||
|
|
||||||
public static int[] CoordinatorLayout_LayoutParams = new int[]
|
public static int[] CoordinatorLayout_LayoutParams = new int[] {
|
||||||
{
|
|
||||||
16842931,
|
16842931,
|
||||||
2130772237,
|
2130772237,
|
||||||
2130772238,
|
2130772238,
|
||||||
@ -5282,8 +5263,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 3
|
// aapt resource value: 3
|
||||||
public const int CoordinatorLayout_LayoutParams_layout_keyline = 3;
|
public const int CoordinatorLayout_LayoutParams_layout_keyline = 3;
|
||||||
|
|
||||||
public static int[] DesignTheme = new int[]
|
public static int[] DesignTheme = new int[] {
|
||||||
{
|
|
||||||
2130772241,
|
2130772241,
|
||||||
2130772242,
|
2130772242,
|
||||||
2130772243};
|
2130772243};
|
||||||
@ -5297,8 +5277,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int DesignTheme_textColorError = 2;
|
public const int DesignTheme_textColorError = 2;
|
||||||
|
|
||||||
public static int[] DrawerArrowToggle = new int[]
|
public static int[] DrawerArrowToggle = new int[] {
|
||||||
{
|
|
||||||
2130772157,
|
2130772157,
|
||||||
2130772158,
|
2130772158,
|
||||||
2130772159,
|
2130772159,
|
||||||
@ -5332,8 +5311,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 7
|
// aapt resource value: 7
|
||||||
public const int DrawerArrowToggle_thickness = 7;
|
public const int DrawerArrowToggle_thickness = 7;
|
||||||
|
|
||||||
public static int[] FloatingActionButton = new int[]
|
public static int[] FloatingActionButton = new int[] {
|
||||||
{
|
|
||||||
2130772032,
|
2130772032,
|
||||||
2130772213,
|
2130772213,
|
||||||
2130772214,
|
2130772214,
|
||||||
@ -5367,8 +5345,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 7
|
// aapt resource value: 7
|
||||||
public const int FloatingActionButton_useCompatPadding = 7;
|
public const int FloatingActionButton_useCompatPadding = 7;
|
||||||
|
|
||||||
public static int[] ForegroundLinearLayout = new int[]
|
public static int[] ForegroundLinearLayout = new int[] {
|
||||||
{
|
|
||||||
16843017,
|
16843017,
|
||||||
16843264,
|
16843264,
|
||||||
2130772249};
|
2130772249};
|
||||||
@ -5382,8 +5359,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int ForegroundLinearLayout_foregroundInsidePadding = 2;
|
public const int ForegroundLinearLayout_foregroundInsidePadding = 2;
|
||||||
|
|
||||||
public static int[] LinearLayoutCompat = new int[]
|
public static int[] LinearLayoutCompat = new int[] {
|
||||||
{
|
|
||||||
16842927,
|
16842927,
|
||||||
16842948,
|
16842948,
|
||||||
16843046,
|
16843046,
|
||||||
@ -5421,8 +5397,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 7
|
// aapt resource value: 7
|
||||||
public const int LinearLayoutCompat_showDividers = 7;
|
public const int LinearLayoutCompat_showDividers = 7;
|
||||||
|
|
||||||
public static int[] LinearLayoutCompat_Layout = new int[]
|
public static int[] LinearLayoutCompat_Layout = new int[] {
|
||||||
{
|
|
||||||
16842931,
|
16842931,
|
||||||
16842996,
|
16842996,
|
||||||
16842997,
|
16842997,
|
||||||
@ -5440,8 +5415,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int LinearLayoutCompat_Layout_android_layout_width = 1;
|
public const int LinearLayoutCompat_Layout_android_layout_width = 1;
|
||||||
|
|
||||||
public static int[] ListPopupWindow = new int[]
|
public static int[] ListPopupWindow = new int[] {
|
||||||
{
|
|
||||||
16843436,
|
16843436,
|
||||||
16843437};
|
16843437};
|
||||||
|
|
||||||
@ -5451,8 +5425,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
|
public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
|
||||||
|
|
||||||
public static int[] MediaRouteButton = new int[]
|
public static int[] MediaRouteButton = new int[] {
|
||||||
{
|
|
||||||
16843071,
|
16843071,
|
||||||
16843072,
|
16843072,
|
||||||
2130771994};
|
2130771994};
|
||||||
@ -5466,8 +5439,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int MediaRouteButton_externalRouteEnabledDrawable = 2;
|
public const int MediaRouteButton_externalRouteEnabledDrawable = 2;
|
||||||
|
|
||||||
public static int[] MenuGroup = new int[]
|
public static int[] MenuGroup = new int[] {
|
||||||
{
|
|
||||||
16842766,
|
16842766,
|
||||||
16842960,
|
16842960,
|
||||||
16843156,
|
16843156,
|
||||||
@ -5493,8 +5465,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int MenuGroup_android_visible = 2;
|
public const int MenuGroup_android_visible = 2;
|
||||||
|
|
||||||
public static int[] MenuItem = new int[]
|
public static int[] MenuItem = new int[] {
|
||||||
{
|
|
||||||
16842754,
|
16842754,
|
||||||
16842766,
|
16842766,
|
||||||
16842960,
|
16842960,
|
||||||
@ -5564,8 +5535,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 13
|
// aapt resource value: 13
|
||||||
public const int MenuItem_showAsAction = 13;
|
public const int MenuItem_showAsAction = 13;
|
||||||
|
|
||||||
public static int[] MenuView = new int[]
|
public static int[] MenuView = new int[] {
|
||||||
{
|
|
||||||
16842926,
|
16842926,
|
||||||
16843052,
|
16843052,
|
||||||
16843053,
|
16843053,
|
||||||
@ -5599,8 +5569,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 7
|
// aapt resource value: 7
|
||||||
public const int MenuView_preserveIconSpacing = 7;
|
public const int MenuView_preserveIconSpacing = 7;
|
||||||
|
|
||||||
public static int[] NavigationView = new int[]
|
public static int[] NavigationView = new int[] {
|
||||||
{
|
|
||||||
16842964,
|
16842964,
|
||||||
16842973,
|
16842973,
|
||||||
16843039,
|
16843039,
|
||||||
@ -5642,8 +5611,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 4
|
// aapt resource value: 4
|
||||||
public const int NavigationView_menu = 4;
|
public const int NavigationView_menu = 4;
|
||||||
|
|
||||||
public static int[] PopupWindow = new int[]
|
public static int[] PopupWindow = new int[] {
|
||||||
{
|
|
||||||
16843126,
|
16843126,
|
||||||
2130772173};
|
2130772173};
|
||||||
|
|
||||||
@ -5653,15 +5621,13 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 1
|
// aapt resource value: 1
|
||||||
public const int PopupWindow_overlapAnchor = 1;
|
public const int PopupWindow_overlapAnchor = 1;
|
||||||
|
|
||||||
public static int[] PopupWindowBackgroundState = new int[]
|
public static int[] PopupWindowBackgroundState = new int[] {
|
||||||
{
|
|
||||||
2130772174};
|
2130772174};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int PopupWindowBackgroundState_state_above_anchor = 0;
|
public const int PopupWindowBackgroundState_state_above_anchor = 0;
|
||||||
|
|
||||||
public static int[] ProgressWheel = new int[]
|
public static int[] ProgressWheel = new int[] {
|
||||||
{
|
|
||||||
2130772284,
|
2130772284,
|
||||||
2130772285,
|
2130772285,
|
||||||
2130772286,
|
2130772286,
|
||||||
@ -5711,8 +5677,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int ProgressWheel_ahTextSize = 2;
|
public const int ProgressWheel_ahTextSize = 2;
|
||||||
|
|
||||||
public static int[] RecyclerView = new int[]
|
public static int[] RecyclerView = new int[] {
|
||||||
{
|
|
||||||
16842948,
|
16842948,
|
||||||
2130771968,
|
2130771968,
|
||||||
2130771969,
|
2130771969,
|
||||||
@ -5734,22 +5699,19 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 4
|
// aapt resource value: 4
|
||||||
public const int RecyclerView_stackFromEnd = 4;
|
public const int RecyclerView_stackFromEnd = 4;
|
||||||
|
|
||||||
public static int[] ScrimInsetsFrameLayout = new int[]
|
public static int[] ScrimInsetsFrameLayout = new int[] {
|
||||||
{
|
|
||||||
2130772256};
|
2130772256};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int ScrimInsetsFrameLayout_insetForeground = 0;
|
public const int ScrimInsetsFrameLayout_insetForeground = 0;
|
||||||
|
|
||||||
public static int[] ScrollingViewBehavior_Params = new int[]
|
public static int[] ScrollingViewBehavior_Params = new int[] {
|
||||||
{
|
|
||||||
2130772257};
|
2130772257};
|
||||||
|
|
||||||
// aapt resource value: 0
|
// aapt resource value: 0
|
||||||
public const int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
|
public const int ScrollingViewBehavior_Params_behavior_overlapTop = 0;
|
||||||
|
|
||||||
public static int[] SearchView = new int[]
|
public static int[] SearchView = new int[] {
|
||||||
{
|
|
||||||
16842970,
|
16842970,
|
||||||
16843039,
|
16843039,
|
||||||
16843296,
|
16843296,
|
||||||
@ -5819,8 +5781,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 12
|
// aapt resource value: 12
|
||||||
public const int SearchView_voiceIcon = 12;
|
public const int SearchView_voiceIcon = 12;
|
||||||
|
|
||||||
public static int[] SnackbarLayout = new int[]
|
public static int[] SnackbarLayout = new int[] {
|
||||||
{
|
|
||||||
16843039,
|
16843039,
|
||||||
2130772032,
|
2130772032,
|
||||||
2130772258};
|
2130772258};
|
||||||
@ -5834,8 +5795,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int SnackbarLayout_maxActionInlineWidth = 2;
|
public const int SnackbarLayout_maxActionInlineWidth = 2;
|
||||||
|
|
||||||
public static int[] Spinner = new int[]
|
public static int[] Spinner = new int[] {
|
||||||
{
|
|
||||||
16842930,
|
16842930,
|
||||||
16843126,
|
16843126,
|
||||||
16843131,
|
16843131,
|
||||||
@ -5857,8 +5817,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 4
|
// aapt resource value: 4
|
||||||
public const int Spinner_popupTheme = 4;
|
public const int Spinner_popupTheme = 4;
|
||||||
|
|
||||||
public static int[] SwitchCompat = new int[]
|
public static int[] SwitchCompat = new int[] {
|
||||||
{
|
|
||||||
16843044,
|
16843044,
|
||||||
16843045,
|
16843045,
|
||||||
16843074,
|
16843074,
|
||||||
@ -5900,8 +5859,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 3
|
// aapt resource value: 3
|
||||||
public const int SwitchCompat_track = 3;
|
public const int SwitchCompat_track = 3;
|
||||||
|
|
||||||
public static int[] TabItem = new int[]
|
public static int[] TabItem = new int[] {
|
||||||
{
|
|
||||||
16842754,
|
16842754,
|
||||||
16842994,
|
16842994,
|
||||||
16843087};
|
16843087};
|
||||||
@ -5915,8 +5873,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int TabItem_android_text = 2;
|
public const int TabItem_android_text = 2;
|
||||||
|
|
||||||
public static int[] TabLayout = new int[]
|
public static int[] TabLayout = new int[] {
|
||||||
{
|
|
||||||
2130772259,
|
2130772259,
|
||||||
2130772260,
|
2130772260,
|
||||||
2130772261,
|
2130772261,
|
||||||
@ -5982,8 +5939,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 9
|
// aapt resource value: 9
|
||||||
public const int TabLayout_tabTextColor = 9;
|
public const int TabLayout_tabTextColor = 9;
|
||||||
|
|
||||||
public static int[] TextAppearance = new int[]
|
public static int[] TextAppearance = new int[] {
|
||||||
{
|
|
||||||
16842901,
|
16842901,
|
||||||
16842902,
|
16842902,
|
||||||
16842903,
|
16842903,
|
||||||
@ -6021,8 +5977,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 8
|
// aapt resource value: 8
|
||||||
public const int TextAppearance_textAllCaps = 8;
|
public const int TextAppearance_textAllCaps = 8;
|
||||||
|
|
||||||
public static int[] TextInputLayout = new int[]
|
public static int[] TextInputLayout = new int[] {
|
||||||
{
|
|
||||||
16842906,
|
16842906,
|
||||||
16843088,
|
16843088,
|
||||||
2130772275,
|
2130772275,
|
||||||
@ -6068,8 +6023,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int TextInputLayout_hintTextAppearance = 2;
|
public const int TextInputLayout_hintTextAppearance = 2;
|
||||||
|
|
||||||
public static int[] Toolbar = new int[]
|
public static int[] Toolbar = new int[] {
|
||||||
{
|
|
||||||
16842927,
|
16842927,
|
||||||
16843072,
|
16843072,
|
||||||
2130772009,
|
2130772009,
|
||||||
@ -6171,8 +6125,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 23
|
// aapt resource value: 23
|
||||||
public const int Toolbar_titleTextColor = 23;
|
public const int Toolbar_titleTextColor = 23;
|
||||||
|
|
||||||
public static int[] View = new int[]
|
public static int[] View = new int[] {
|
||||||
{
|
|
||||||
16842752,
|
16842752,
|
||||||
16842970,
|
16842970,
|
||||||
2130772210,
|
2130772210,
|
||||||
@ -6194,8 +6147,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 4
|
// aapt resource value: 4
|
||||||
public const int View_theme = 4;
|
public const int View_theme = 4;
|
||||||
|
|
||||||
public static int[] ViewBackgroundHelper = new int[]
|
public static int[] ViewBackgroundHelper = new int[] {
|
||||||
{
|
|
||||||
16842964,
|
16842964,
|
||||||
2130772213,
|
2130772213,
|
||||||
2130772214};
|
2130772214};
|
||||||
@ -6209,8 +6161,7 @@ namespace eShopOnContainers.Droid
|
|||||||
// aapt resource value: 2
|
// aapt resource value: 2
|
||||||
public const int ViewBackgroundHelper_backgroundTintMode = 2;
|
public const int ViewBackgroundHelper_backgroundTintMode = 2;
|
||||||
|
|
||||||
public static int[] ViewStubCompat = new int[]
|
public static int[] ViewStubCompat = new int[] {
|
||||||
{
|
|
||||||
16842960,
|
16842960,
|
||||||
16842994,
|
16842994,
|
||||||
16842995};
|
16842995};
|
||||||
|
@ -54,9 +54,170 @@
|
|||||||
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Reference Include="Acr.Support.Android, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.Support.2.1.0\lib\MonoAndroid10\Acr.Support.Android.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\MonoAndroid10\Acr.UserDialogs.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs.Interface, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\MonoAndroid10\Acr.UserDialogs.Interface.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="AndHUD, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\AndHUD.1.2.0\lib\MonoAndroid\AndHUD.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\MonoAndroid10\FFImageLoading.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\MonoAndroid10\FFImageLoading.Forms.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms.Droid, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\MonoAndroid10\FFImageLoading.Forms.Droid.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\MonoAndroid10\FFImageLoading.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="IdentityModel.Portable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\IdentityModel.1.3.1\lib\portable-net45+wp80+win8+wpa81\IdentityModel.Portable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="ModernHttpClient, Version=2.4.2.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\MonoAndroid\ModernHttpClient.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
<Reference Include="Mono.Android" />
|
<Reference Include="Mono.Android" />
|
||||||
<Reference Include="mscorlib" />
|
<Reference Include="mscorlib" />
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="OkHttp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\MonoAndroid\OkHttp.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PCLCrypto, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d4421c8a4786956c, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PCLCrypto.2.0.147\lib\MonoAndroid23\PCLCrypto.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.BCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Kernel32, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.NCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Windows.Core, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.CurrentActivity, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.CurrentActivity.1.0.1\lib\MonoAndroid10\Plugin.CurrentActivity.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator, Version=3.0.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\MonoAndroid10\Plugin.Geolocator.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator.Abstractions, Version=3.0.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\MonoAndroid10\Plugin.Geolocator.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Permissions, Version=1.1.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.Permissions.1.1.7\lib\MonoAndroid10\Plugin.Permissions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Permissions.Abstractions, Version=1.1.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.Permissions.1.1.7\lib\MonoAndroid10\Plugin.Permissions.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings, Version=2.6.0.12, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\MonoAndroid10\Plugin.Settings.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings.Abstractions, Version=2.6.0.12, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\MonoAndroid10\Plugin.Settings.Abstractions.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit, Version=1.0.6135.18790, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\MonoAndroid10\SlideOverKit.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit.Droid, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\MonoAndroid10\SlideOverKit.Droid.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Splat, Version=1.6.2.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Splat.1.6.2\lib\monoandroid\Splat.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\monoandroid\System.Net.Http.Extensions.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\monoandroid\System.Net.Http.Primitives.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.ObjectModel" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.CardView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.MediaRouter">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FormsViewGroup">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\FormsViewGroup.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Core">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform.Android">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Xaml">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.IO.Compression" />
|
||||||
|
<Reference Include="Autofac">
|
||||||
|
<HintPath>..\..\..\..\packages\Autofac.4.5.0\lib\netstandard1.1\Autofac.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Activities\MainActivity.cs" />
|
<Compile Include="Activities\MainActivity.cs" />
|
||||||
@ -85,6 +246,7 @@
|
|||||||
<Link>Assets\SourceSansPro-Regular.ttf</Link>
|
<Link>Assets\SourceSansPro-Regular.ttf</Link>
|
||||||
</AndroidAsset>
|
</AndroidAsset>
|
||||||
<None Include="app.config" />
|
<None Include="app.config" />
|
||||||
|
<None Include="packages.config" />
|
||||||
<None Include="Resources\AboutResources.txt" />
|
<None Include="Resources\AboutResources.txt" />
|
||||||
<None Include="Assets\AboutAssets.txt" />
|
<None Include="Assets\AboutAssets.txt" />
|
||||||
<AndroidResource Include="Resources\drawable-xxhdpi\switch_off.png" />
|
<AndroidResource Include="Resources\drawable-xxhdpi\switch_off.png" />
|
||||||
@ -231,34 +393,15 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\drawable\default_campaign.png" />
|
<AndroidResource Include="Resources\drawable\default_campaign.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Acr.Support" version="2.1.0" />
|
|
||||||
<PackageReference Include="Acr.UserDialogs" version="6.3.3" />
|
|
||||||
<PackageReference Include="AndHUD" version="1.2.0" />
|
|
||||||
<PackageReference Include="Autofac" version="4.5.0" />
|
|
||||||
<PackageReference Include="IdentityModel" version="2.10.0" />
|
|
||||||
<PackageReference Include="modernhttpclient" version="2.4.2" />
|
|
||||||
<PackageReference Include="NETStandard.Library" version="2.0.0" />
|
|
||||||
<PackageReference Include="Newtonsoft.Json" version="10.0.3" />
|
|
||||||
<PackageReference Include="PCLCrypto" version="2.0.147" />
|
|
||||||
<PackageReference Include="Plugin.CurrentActivity" version="1.0.1" />
|
|
||||||
<PackageReference Include="Plugin.Permissions" version="1.1.7" />
|
|
||||||
<PackageReference Include="SlideOverKit" version="2.1.4" />
|
|
||||||
<PackageReference Include="Splat" version="1.6.2" />
|
|
||||||
<PackageReference Include="Validation" version="2.2.8" />
|
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator" version="3.0.4" />
|
|
||||||
<PackageReference Include="Xam.Plugins.Settings" version="2.6.0.12-beta" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Animated.Vector.Drawable" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Design" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v4" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.CardView" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.RecyclerView" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Vector.Drawable" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.Forms" version="2.3.4.231" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets'))" />
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
|
||||||
|
</Target>
|
||||||
|
<Import Project="..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
</Project>
|
</Project>
|
@ -0,0 +1,85 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Acr.Support" version="2.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Acr.UserDialogs" version="6.3.3" targetFramework="monoandroid70" />
|
||||||
|
<package id="AndHUD" version="1.2.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Autofac" version="4.5.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="IdentityModel" version="1.3.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="monoandroid60" />
|
||||||
|
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="monoandroid60" />
|
||||||
|
<package id="Microsoft.CSharp" version="4.0.1" targetFramework="monoandroid70" />
|
||||||
|
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="monoandroid70" />
|
||||||
|
<package id="Microsoft.NETCore.Platforms" version="1.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="Microsoft.Win32.Primitives" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="modernhttpclient" version="2.4.2" targetFramework="monoandroid70" />
|
||||||
|
<package id="NETStandard.Library" version="1.6.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="PCLCrypto" version="2.0.147" targetFramework="monoandroid60" />
|
||||||
|
<package id="PInvoke.BCrypt" version="0.3.2" targetFramework="monoandroid60" />
|
||||||
|
<package id="PInvoke.Kernel32" version="0.3.2" targetFramework="monoandroid60" />
|
||||||
|
<package id="PInvoke.NCrypt" version="0.3.2" targetFramework="monoandroid60" />
|
||||||
|
<package id="PInvoke.Windows.Core" version="0.3.2" targetFramework="monoandroid60" />
|
||||||
|
<package id="Plugin.CurrentActivity" version="1.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="Plugin.Permissions" version="1.1.7" targetFramework="monoandroid60" />
|
||||||
|
<package id="SlideOverKit" version="2.1.4" targetFramework="monoandroid70" />
|
||||||
|
<package id="Splat" version="1.6.2" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.AppContext" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Collections" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Collections.Concurrent" version="4.0.12" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.ComponentModel" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Console" version="4.0.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Diagnostics.Tools" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Diagnostics.Tracing" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Dynamic.Runtime" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Globalization" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Globalization.Calendars" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.IO" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.IO.Compression" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.IO.Compression.ZipFile" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.IO.FileSystem" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.IO.FileSystem.Primitives" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Linq" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Linq.Expressions" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Net.Http" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Net.Primitives" version="4.0.11" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Net.Sockets" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.ObjectModel" version="4.0.12" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Reflection" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Reflection.Extensions" version="4.0.1" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Reflection.Primitives" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Resources.ResourceManager" version="4.0.1" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Runtime" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Runtime.Extensions" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Runtime.Handles" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Runtime.InteropServices" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.0.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Runtime.Numerics" version="4.0.1" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Runtime.Serialization.Primitives" version="4.1.1" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Security.Cryptography.Algorithms" version="4.2.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Security.Cryptography.Encoding" version="4.0.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Security.Cryptography.Primitives" version="4.0.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Security.Cryptography.X509Certificates" version="4.1.0" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Text.Encoding" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Text.Encoding.Extensions" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Text.RegularExpressions" version="4.1.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Threading" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Threading.Tasks" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Threading.Timer" version="4.0.1" targetFramework="monoandroid60" />
|
||||||
|
<package id="System.Xml.ReaderWriter" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="System.Xml.XDocument" version="4.0.11" targetFramework="monoandroid70" />
|
||||||
|
<package id="Validation" version="2.2.8" targetFramework="monoandroid60" />
|
||||||
|
<package id="Xam.Plugin.Geolocator" version="3.0.4" targetFramework="monoandroid60" />
|
||||||
|
<package id="Xam.Plugins.Settings" version="2.6.0.12-beta" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.Design" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.v4" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.v7.AppCompat" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.v7.CardView" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.v7.MediaRouter" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.v7.RecyclerView" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.Android.Support.Vector.Drawable" version="23.3.0" targetFramework="monoandroid70" />
|
||||||
|
<package id="Xamarin.FFImageLoading" version="2.2.9" targetFramework="monoandroid60" />
|
||||||
|
<package id="Xamarin.FFImageLoading.Forms" version="2.2.9" targetFramework="monoandroid60" />
|
||||||
|
<package id="Xamarin.Forms" version="2.3.4.231" targetFramework="monoandroid60" />
|
||||||
|
</packages>
|
@ -45,6 +45,174 @@
|
|||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="FormsViewGroup, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\FormsViewGroup.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Mono.Android" />
|
||||||
|
<Reference Include="mscorlib" />
|
||||||
|
<Reference Include="PCLCrypto, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d4421c8a4786956c, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PCLCrypto.2.0.147\lib\MonoAndroid23\PCLCrypto.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.BCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Kernel32, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.NCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Windows.Core, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.CurrentActivity, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.CurrentActivity.1.0.1\lib\MonoAndroid10\Plugin.CurrentActivity.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator, Version=3.0.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\MonoAndroid10\Plugin.Geolocator.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator.Abstractions, Version=3.0.4.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\MonoAndroid10\Plugin.Geolocator.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Permissions, Version=1.1.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.Permissions.1.1.7\lib\MonoAndroid10\Plugin.Permissions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Permissions.Abstractions, Version=1.1.6.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Plugin.Permissions.1.1.7\lib\MonoAndroid10\Plugin.Permissions.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\monoandroid\System.Net.Http.Extensions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\monoandroid\System.Net.Http.Primitives.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.CardView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.MediaRouter, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Android.Support.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform.Android, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.abstractions.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.core">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.execution.dotnet">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.extensibility.execution.2.1.0\lib\monoandroid\xunit.execution.dotnet.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.runner.utility.dotnet">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.runner.utility.2.1.0\lib\dotnet\xunit.runner.utility.dotnet.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.runner.devices">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.runner.devices.2.1.0\lib\MonoAndroid\xunit.runner.devices.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Newtonsoft.Json">
|
||||||
|
<HintPath>..\..\..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.IO.Compression" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="Autofac">
|
||||||
|
<HintPath>..\..\..\..\packages\Autofac.4.5.0\lib\netstandard1.1\Autofac.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings.Abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\MonoAndroid10\Plugin.Settings.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\MonoAndroid10\Plugin.Settings.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.assert">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.assert.2.2.0\lib\netstandard1.1\xunit.assert.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\MonoAndroid10\SlideOverKit.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit.Droid">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\MonoAndroid10\SlideOverKit.Droid.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.Support.Android">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.Support.2.1.0\lib\MonoAndroid10\Acr.Support.Android.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="AndHUD">
|
||||||
|
<HintPath>..\..\..\..\packages\AndHUD.1.2.0\lib\MonoAndroid\AndHUD.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Splat">
|
||||||
|
<HintPath>..\..\..\..\packages\Splat.1.6.2\lib\monoandroid\Splat.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\MonoAndroid10\Acr.UserDialogs.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs.Interface">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\MonoAndroid10\Acr.UserDialogs.Interface.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="IdentityModel.Portable">
|
||||||
|
<HintPath>..\..\..\..\packages\IdentityModel.1.3.1\lib\portable-net45+wp80+win8+wpa81\IdentityModel.Portable.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\MonoAndroid10\FFImageLoading.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Platform">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\MonoAndroid10\FFImageLoading.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\MonoAndroid10\FFImageLoading.Forms.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms.Droid">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\MonoAndroid10\FFImageLoading.Forms.Droid.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="ModernHttpClient">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\MonoAndroid\ModernHttpClient.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="OkHttp">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\MonoAndroid\OkHttp.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="MainActivity.cs" />
|
<Compile Include="MainActivity.cs" />
|
||||||
<Compile Include="MainApplication.cs" />
|
<Compile Include="MainApplication.cs" />
|
||||||
@ -53,6 +221,9 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="app.config" />
|
<None Include="app.config" />
|
||||||
|
<None Include="packages.config">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
<None Include="Resources\AboutResources.txt" />
|
<None Include="Resources\AboutResources.txt" />
|
||||||
<None Include="Assets\AboutAssets.txt" />
|
<None Include="Assets\AboutAssets.txt" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -70,43 +241,6 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="Properties\AndroidManifest.xml" />
|
<None Include="Properties\AndroidManifest.xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="Mono.Android" />
|
|
||||||
<Reference Include="mscorlib" />
|
|
||||||
<Reference Include="System" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Acr.Support" version="2.1.0" />
|
|
||||||
<PackageReference Include="Acr.UserDialogs" version="6.3.3" />
|
|
||||||
<PackageReference Include="AndHUD" version="1.2.0" />
|
|
||||||
<PackageReference Include="Autofac" version="4.5.0" />
|
|
||||||
<PackageReference Include="IdentityModel" version="2.10.0" />
|
|
||||||
<PackageReference Include="modernhttpclient" version="2.4.2" />
|
|
||||||
<PackageReference Include="NETStandard.Library" version="2.0.0" />
|
|
||||||
<PackageReference Include="Newtonsoft.Json" version="10.0.3" />
|
|
||||||
<PackageReference Include="PCLCrypto" version="2.0.147" />
|
|
||||||
<PackageReference Include="Plugin.CurrentActivity" version="1.0.1" />
|
|
||||||
<PackageReference Include="Plugin.Permissions" version="1.1.7" />
|
|
||||||
<PackageReference Include="SlideOverKit" version="2.1.4" />
|
|
||||||
<PackageReference Include="Splat" version="1.6.2" />
|
|
||||||
<PackageReference Include="Validation" version="2.2.8" />
|
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator" version="3.0.4" />
|
|
||||||
<PackageReference Include="Xam.Plugins.Settings" version="2.6.0.12-beta" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Animated.Vector.Drawable" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Design" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v4" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.CardView" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.v7.RecyclerView" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.Android.Support.Vector.Drawable" version="23.3.0" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.Forms" version="2.3.4.231" />
|
|
||||||
<PackageReference Include="xunit.runner.devices">
|
|
||||||
<Version>2.2.0</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\eShopOnContainers.UnitTests\eShopOnContainers.UnitTests.csproj">
|
<ProjectReference Include="..\eShopOnContainers.UnitTests\eShopOnContainers.UnitTests.csproj">
|
||||||
<Project>{f7b6a162-bc4d-4924-b16a-713f9b0344e7}</Project>
|
<Project>{f7b6a162-bc4d-4924-b16a-713f9b0344e7}</Project>
|
||||||
@ -114,4 +248,22 @@
|
|||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets'))" />
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets'))" />
|
||||||
|
</Target>
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
<Import Project="..\..\..\..\packages\xunit.runner.devices.2.1.0\build\MonoAndroid\xunit.runner.devices.targets" Condition="Exists('..\..\..\..\packages\xunit.runner.devices.2.1.0\build\MonoAndroid\xunit.runner.devices.targets')" />
|
||||||
|
<Import Project="..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
|
||||||
</Project>
|
</Project>
|
@ -11,14 +11,13 @@
|
|||||||
<AssemblyName>eShopOnContainers.TestRunner.Windows</AssemblyName>
|
<AssemblyName>eShopOnContainers.TestRunner.Windows</AssemblyName>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.16267.0</TargetPlatformVersion>
|
<TargetPlatformVersion>10.0.14393.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16267.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||||
<PackageCertificateKeyFile>eShopOnContainers.TestRunner.Windows_TemporaryKey.pfx</PackageCertificateKeyFile>
|
<PackageCertificateKeyFile>eShopOnContainers.TestRunner.Windows_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||||
<RuntimeIdentifiers>win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot</RuntimeIdentifiers>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@ -89,6 +88,10 @@
|
|||||||
<Prefer32Bit>true</Prefer32Bit>
|
<Prefer32Bit>true</Prefer32Bit>
|
||||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
|
||||||
|
<None Include="project.json" />
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="App.xaml.cs">
|
<Compile Include="App.xaml.cs">
|
||||||
<DependentUpon>App.xaml</DependentUpon>
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
@ -127,17 +130,6 @@
|
|||||||
<Name>eShopOnContainers.UnitTests</Name>
|
<Name>eShopOnContainers.UnitTests</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
|
||||||
<Version>6.0.0-preview1-25611-03</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xamarin.Forms">
|
|
||||||
<Version>2.3.4.231</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="xunit.runner.devices">
|
|
||||||
<Version>2.1.0</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.UniversalWindowsPlatform": "5.3.3",
|
||||||
|
"Xamarin.Forms": "2.3.4.231",
|
||||||
|
"xunit.runner.devices": "2.1.0"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"uap10.0": {}
|
||||||
|
},
|
||||||
|
"runtimes": {
|
||||||
|
"win10-arm": {},
|
||||||
|
"win10-arm-aot": {},
|
||||||
|
"win10-x86": {},
|
||||||
|
"win10-x86-aot": {},
|
||||||
|
"win10-x64": {},
|
||||||
|
"win10-x64-aot": {}
|
||||||
|
}
|
||||||
|
}
|
@ -106,37 +106,130 @@
|
|||||||
<None Include="Info.plist" />
|
<None Include="Info.plist" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<InterfaceDefinition Include="Resources\LaunchScreen.xib" />
|
<InterfaceDefinition Include="Resources\LaunchScreen.xib" />
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="PCLCrypto, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d4421c8a4786956c, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PCLCrypto.2.0.147\lib\xamarinios10\PCLCrypto.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.BCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Kernel32, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.NCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Windows.Core, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\Xamarin.iOS10\System.Net.Http.Extensions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\Xamarin.iOS10\System.Net.Http.Primitives.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform.iOS, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.iOS" />
|
||||||
|
<Reference Include="xunit.abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.abstractions.2.0.0\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.core">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.execution.dotnet">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.extensibility.execution.2.1.0\lib\xamarinios\xunit.execution.dotnet.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.runner.utility.dotnet">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.runner.utility.2.1.0\lib\dotnet\xunit.runner.utility.dotnet.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="xunit.runner.devices">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.runner.devices.2.1.0\lib\Xamarin.iOS\xunit.runner.devices.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.IO.Compression" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="xunit.assert">
|
||||||
|
<HintPath>..\..\..\..\packages\xunit.assert.2.2.0\lib\netstandard1.1\xunit.assert.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Newtonsoft.Json">
|
||||||
|
<HintPath>..\..\..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Autofac">
|
||||||
|
<HintPath>..\..\..\..\packages\Autofac.4.5.0\lib\netstandard1.1\Autofac.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings.Abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\Xamarin.iOS10\Plugin.Settings.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\Xamarin.iOS10\Plugin.Settings.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\Xamarin.iOS10\SlideOverKit.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit.iOS">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\Xamarin.iOS10\SlideOverKit.iOS.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.Support.iOS">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.Support.2.1.0\lib\Xamarin.iOS10\Acr.Support.iOS.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Splat">
|
||||||
|
<HintPath>..\..\..\..\packages\Splat.1.6.2\lib\Xamarin.iOS10\Splat.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\Xamarin.iOS10\Acr.UserDialogs.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs.Interface">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\Xamarin.iOS10\Acr.UserDialogs.Interface.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="IdentityModel.Portable">
|
||||||
|
<HintPath>..\..\..\..\packages\IdentityModel.1.3.1\lib\portable-net45+wp80+win8+wpa81\IdentityModel.Portable.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="WebP.Touch">
|
||||||
|
<HintPath>..\..\..\..\packages\WebP.Touch.1.0.3\lib\Xamarin.iOS10\WebP.Touch.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\Xamarin.iOS10\FFImageLoading.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Platform">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Forms.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms.Touch">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Forms.Touch.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="ModernHttpClient">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\Xamarin.iOS10\ModernHttpClient.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator.Abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\Xamarin.iOS10\Plugin.Geolocator.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\Xamarin.iOS10\Plugin.Geolocator.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="Entitlements.plist" />
|
<Content Include="Entitlements.plist" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Reference Include="System" />
|
|
||||||
<Reference Include="System.Core" />
|
|
||||||
<Reference Include="Xamarin.iOS" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Acr.Support" version="2.1.0" />
|
|
||||||
<PackageReference Include="Acr.UserDialogs" version="6.3.3" />
|
|
||||||
<PackageReference Include="Autofac" version="4.5.0" />
|
|
||||||
<PackageReference Include="IdentityModel" version="2.10.0" />
|
|
||||||
<PackageReference Include="modernhttpclient" version="2.4.2" />
|
|
||||||
<PackageReference Include="NETStandard.Library" version="2.0.0" />
|
|
||||||
<PackageReference Include="Newtonsoft.Json" version="10.0.3" />
|
|
||||||
<PackageReference Include="PCLCrypto" version="2.0.147" />
|
|
||||||
<PackageReference Include="SlideOverKit" version="2.1.4" />
|
|
||||||
<PackageReference Include="Splat" version="1.6.2" />
|
|
||||||
<PackageReference Include="Validation" version="2.2.8" />
|
|
||||||
<PackageReference Include="WebP.Touch" version="1.0.3" />
|
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator" version="3.0.4" />
|
|
||||||
<PackageReference Include="Xam.Plugins.Settings" version="2.6.0.12-beta" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.Forms" version="2.3.4.231" />
|
|
||||||
<PackageReference Include="xunit.runner.devices">
|
|
||||||
<Version>2.2.0</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\eShopOnContainers.UnitTests\eShopOnContainers.UnitTests.csproj">
|
<ProjectReference Include="..\eShopOnContainers.UnitTests\eShopOnContainers.UnitTests.csproj">
|
||||||
<Project>{f7b6a162-bc4d-4924-b16a-713f9b0344e7}</Project>
|
<Project>{f7b6a162-bc4d-4924-b16a-713f9b0344e7}</Project>
|
||||||
@ -144,4 +237,13 @@
|
|||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets'))" />
|
||||||
|
</Target>
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
|
<Import Project="..\..\..\..\packages\xunit.runner.devices.2.1.0\build\Xamarin.iOS\xunit.runner.devices.targets" Condition="Exists('..\..\..\..\packages\xunit.runner.devices.2.1.0\build\Xamarin.iOS\xunit.runner.devices.targets')" />
|
||||||
|
<Import Project="..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
|
||||||
</Project>
|
</Project>
|
@ -28,15 +28,32 @@
|
|||||||
<ConsolePause>false</ConsolePause>
|
<ConsolePause>false</ConsolePause>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Reference Include="nunit.core, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\NUnitTestAdapter.2.0.0\lib\nunit.core.dll</HintPath>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="nunit.core.interfaces, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\NUnitTestAdapter.2.0.0\lib\nunit.core.interfaces.dll</HintPath>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="nunit.util, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\NUnitTestAdapter.2.0.0\lib\nunit.util.dll</HintPath>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="NUnit.VisualStudio.TestAdapter, Version=2.0.0.0, Culture=neutral, PublicKeyToken=4cb40d35494691ac, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\NUnitTestAdapter.2.0.0\lib\NUnit.VisualStudio.TestAdapter.dll</HintPath>
|
||||||
|
<Private>False</Private>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
<Reference Include="Xamarin.UITest, Version=2.0.3.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.UITest.2.0.3\lib\Xamarin.UITest.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="NUnit" version="2.6.4" targetFramework="net45" />
|
|
||||||
<PackageReference Include="NUnitTestAdapter" version="2.0.0" targetFramework="net45" />
|
|
||||||
<PackageReference Include="Xamarin.UITest" version="2.0.3" targetFramework="net45" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Tests.cs" />
|
<Compile Include="Tests.cs" />
|
||||||
<Compile Include="AppInitializer.cs" />
|
<Compile Include="AppInitializer.cs" />
|
||||||
|
@ -1,20 +1,71 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
||||||
<PackageTargetFallback>portable-net45+win8+wpa81+wp8</PackageTargetFallback>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<DebugType>full</DebugType>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<ProjectGuid>{F7B6A162-BC4D-4924-B16A-713F9B0344E7}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>eShopOnContainers.UnitTests</RootNamespace>
|
||||||
|
<AssemblyName>eShopOnContainers.UnitTests</AssemblyName>
|
||||||
|
<DefaultLanguage>es-ES</DefaultLanguage>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
|
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="xunit" Version="2.2.0" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<PackageReference Include="xunit.runner.console" Version="2.2.0" />
|
<Compile Include="Mocks\MockEventToCommandBehavior.cs" />
|
||||||
<PackageReference Include="Xamarin.Forms" Version="2.3.4.231" />
|
<Compile Include="Services\BasketServiceTests.cs" />
|
||||||
|
<Compile Include="Services\CatalogServiceTests.cs" />
|
||||||
|
<Compile Include="Services\MarketingServiceTests.cs" />
|
||||||
|
<Compile Include="ViewModels\CatalogViewModelTests.cs" />
|
||||||
|
<Compile Include="ViewModels\MainViewModelTests.cs" />
|
||||||
|
<Compile Include="ViewModels\MarketingViewModelTests.cs" />
|
||||||
|
<Compile Include="ViewModels\OrderViewModelTests.cs" />
|
||||||
|
<Compile Include="Services\OrdersServiceTests.cs" />
|
||||||
|
<Compile Include="Behaviors\EventToCommandBehaviorTests.cs" />
|
||||||
|
<Compile Include="Mocks\MockViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\MockViewModelTests.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\eShopOnContainers.Core\eShopOnContainers.Core.csproj" />
|
<None Include="app.config" />
|
||||||
|
<None Include="project.json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\eShopOnContainers.Core\eShopOnContainers.Core.csproj">
|
||||||
|
<Project>{67f9d3a8-f71e-4428-913f-c37ae82cdb24}</Project>
|
||||||
|
<Name>eShopOnContainers.Core</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
</Project>
|
</Project>
|
@ -11,16 +11,14 @@
|
|||||||
<AssemblyName>eShopOnContainers.Windows</AssemblyName>
|
<AssemblyName>eShopOnContainers.Windows</AssemblyName>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.16267.0</TargetPlatformVersion>
|
<TargetPlatformVersion>10.0.10586.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16267.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||||
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
|
<EnableDotNetNativeCompatibleProfile>true</EnableDotNetNativeCompatibleProfile>
|
||||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<PackageCertificateKeyFile>Windows_TemporaryKey.pfx</PackageCertificateKeyFile>
|
<PackageCertificateKeyFile>Windows_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||||
<SkipValidatePackageReferences>true</SkipValidatePackageReferences>
|
<SkipValidatePackageReferences>true</SkipValidatePackageReferences>
|
||||||
<RuntimeIdentifiers>win10-arm;win10-arm-aot;win10-x86;win10-x86-aot;win10-x64;win10-x64-aot</RuntimeIdentifiers>
|
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
@ -102,6 +100,7 @@
|
|||||||
<Content Include="..\CommonResources\Fonts\SourceSansPro-Regular.ttf">
|
<Content Include="..\CommonResources\Fonts\SourceSansPro-Regular.ttf">
|
||||||
<Link>Assets\Fonts\SourceSansPro-Regular.ttf</Link>
|
<Link>Assets\Fonts\SourceSansPro-Regular.ttf</Link>
|
||||||
</Content>
|
</Content>
|
||||||
|
<None Include="project.json" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="App.xaml.cs">
|
<Compile Include="App.xaml.cs">
|
||||||
@ -172,52 +171,18 @@
|
|||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<SDKReference Include="WindowsMobile, Version=10.0.10586.0">
|
||||||
|
<Name>Windows Mobile Extensions for the UWP</Name>
|
||||||
|
</SDKReference>
|
||||||
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\eShopOnContainers.Core\eShopOnContainers.Core.csproj">
|
<ProjectReference Include="..\eShopOnContainers.Core\eShopOnContainers.Core.csproj">
|
||||||
<Project>{67f9d3a8-f71e-4428-913f-c37ae82cdb24}</Project>
|
<Project>{67f9d3a8-f71e-4428-913f-c37ae82cdb24}</Project>
|
||||||
<Name>eShopOnContainers.Core</Name>
|
<Name>eShopOnContainers.Core</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup />
|
||||||
<PackageReference Include="Acr.UserDialogs">
|
|
||||||
<Version>6.3.3</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="IdentityModel">
|
|
||||||
<Version>2.10.0</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
|
||||||
<Version>6.0.0-preview1-25611-03</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Newtonsoft.Json">
|
|
||||||
<Version>10.0.3</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="PCLCrypto">
|
|
||||||
<Version>2.0.147</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="SlideOverKit">
|
|
||||||
<Version>2.1.4</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator">
|
|
||||||
<Version>3.0.4</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xam.Plugins.Settings">
|
|
||||||
<Version>2.6.0.12-beta</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading">
|
|
||||||
<Version>2.2.9</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms">
|
|
||||||
<Version>2.2.9</Version>
|
|
||||||
</PackageReference>
|
|
||||||
<PackageReference Include="Xamarin.Forms">
|
|
||||||
<Version>2.3.4.231</Version>
|
|
||||||
</PackageReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
|
||||||
<SDKReference Include="WindowsMobile, Version=10.0.16267.0">
|
|
||||||
<Name>Windows Mobile Extensions for the UWP</Name>
|
|
||||||
</SDKReference>
|
|
||||||
</ItemGroup>
|
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"Acr.UserDialogs": "6.3.3",
|
||||||
|
"IdentityModel": "1.3.1",
|
||||||
|
"Microsoft.NETCore.UniversalWindowsPlatform": "5.3.3",
|
||||||
|
"Newtonsoft.Json": "9.0.1",
|
||||||
|
"PCLCrypto": "2.0.147",
|
||||||
|
"SlideOverKit": "2.1.4",
|
||||||
|
"Xam.Plugin.Geolocator": "3.0.4",
|
||||||
|
"Xam.Plugins.Settings": "2.6.0.12-beta",
|
||||||
|
"Xamarin.FFImageLoading": "2.2.9",
|
||||||
|
"Xamarin.FFImageLoading.Forms": "2.2.9",
|
||||||
|
"Xamarin.Forms": "2.3.4.231"
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"uap10.0": {}
|
||||||
|
},
|
||||||
|
"runtimes": {
|
||||||
|
"win10-arm": {},
|
||||||
|
"win10-arm-aot": {},
|
||||||
|
"win10-x86": {},
|
||||||
|
"win10-x86-aot": {},
|
||||||
|
"win10-x64": {},
|
||||||
|
"win10-x64-aot": {}
|
||||||
|
}
|
||||||
|
}
|
@ -122,6 +122,7 @@
|
|||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<ITunesArtwork Include="iTunesArtwork" />
|
<ITunesArtwork Include="iTunesArtwork" />
|
||||||
<ITunesArtwork Include="iTunesArtwork@2x" />
|
<ITunesArtwork Include="iTunesArtwork@2x" />
|
||||||
|
<None Include="packages.config" />
|
||||||
<Compile Include="Effects\CircleEffect.cs" />
|
<Compile Include="Effects\CircleEffect.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -131,9 +132,118 @@
|
|||||||
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
|
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Reference Include="Acr.Support.iOS, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.Support.2.1.0\lib\Xamarin.iOS10\Acr.Support.iOS.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\Xamarin.iOS10\Acr.UserDialogs.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Acr.UserDialogs.Interface, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Acr.UserDialogs.6.3.3\lib\Xamarin.iOS10\Acr.UserDialogs.Interface.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\Xamarin.iOS10\FFImageLoading.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Forms.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Forms.Touch, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.Forms.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Forms.Touch.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="FFImageLoading.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.FFImageLoading.2.2.9\lib\Xamarin.iOS10\FFImageLoading.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="IdentityModel.Portable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\IdentityModel.1.3.1\lib\portable-net45+wp80+win8+wpa81\IdentityModel.Portable.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="ModernHttpClient, Version=2.4.2.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\modernhttpclient.2.4.2\lib\Xamarin.iOS10\ModernHttpClient.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PCLCrypto, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d4421c8a4786956c, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PCLCrypto.2.0.147\lib\xamarinios10\PCLCrypto.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.BCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.BCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.BCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Kernel32, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Kernel32.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Kernel32.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.NCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.NCrypt.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.NCrypt.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="PInvoke.Windows.Core, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings, Version=2.6.0.12, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\Xamarin.iOS10\Plugin.Settings.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Settings.Abstractions, Version=2.6.0.12, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugins.Settings.2.6.0.12-beta\lib\Xamarin.iOS10\Plugin.Settings.Abstractions.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit, Version=1.0.6135.18790, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\Xamarin.iOS10\SlideOverKit.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="SlideOverKit.iOS, Version=1.0.6135.18893, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\SlideOverKit.2.1.4\lib\Xamarin.iOS10\SlideOverKit.iOS.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Splat, Version=1.6.2.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Splat.1.6.2\lib\Xamarin.iOS10\Splat.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Net.Http.Extensions, Version=2.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\Xamarin.iOS10\System.Net.Http.Extensions.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Net.Http.Primitives, Version=4.2.29.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Microsoft.Net.Http.2.2.29\lib\Xamarin.iOS10\System.Net.Http.Primitives.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="WebP.Touch, Version=1.0.6230.37678, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\..\..\packages\WebP.Touch.1.0.3\lib\Xamarin.iOS10\WebP.Touch.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="Xamarin.iOS" />
|
<Reference Include="Xamarin.iOS" />
|
||||||
|
<Reference Include="System.IO.Compression" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="Autofac">
|
||||||
|
<HintPath>..\..\..\..\packages\Autofac.4.5.0\lib\netstandard1.1\Autofac.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Core">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Platform.iOS">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Xamarin.Forms.Xaml">
|
||||||
|
<HintPath>..\..\..\..\packages\Xamarin.Forms.2.3.4.231\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator.Abstractions">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\Xamarin.iOS10\Plugin.Geolocator.Abstractions.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Plugin.Geolocator">
|
||||||
|
<HintPath>..\..\..\..\packages\Xam.Plugin.Geolocator.3.0.4\lib\Xamarin.iOS10\Plugin.Geolocator.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BundleResource Include="Resources\fake_product_01.png" />
|
<BundleResource Include="Resources\fake_product_01.png" />
|
||||||
@ -326,24 +436,13 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\default_campaign.png" />
|
<AndroidResource Include="Resources\default_campaign.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Acr.Support" version="2.1.0" />
|
|
||||||
<PackageReference Include="Acr.UserDialogs" version="6.3.3" />
|
|
||||||
<PackageReference Include="Autofac" version="4.5.0" />
|
|
||||||
<PackageReference Include="IdentityModel" version="2.10.0" />
|
|
||||||
<PackageReference Include="modernhttpclient" version="2.4.2" />
|
|
||||||
<PackageReference Include="NETStandard.Library" version="2.0.0" />
|
|
||||||
<PackageReference Include="Newtonsoft.Json" version="10.0.3" />
|
|
||||||
<PackageReference Include="PCLCrypto" version="2.0.147" />
|
|
||||||
<PackageReference Include="SlideOverKit" version="2.1.4" />
|
|
||||||
<PackageReference Include="Splat" version="1.6.2" />
|
|
||||||
<PackageReference Include="Validation" version="2.2.8" />
|
|
||||||
<PackageReference Include="WebP.Touch" version="1.0.3" />
|
|
||||||
<PackageReference Include="Xam.Plugin.Geolocator" version="3.0.4" />
|
|
||||||
<PackageReference Include="Xam.Plugins.Settings" version="2.6.0.12-beta" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.FFImageLoading.Forms" version="2.2.9" />
|
|
||||||
<PackageReference Include="Xamarin.Forms" version="2.3.4.231" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
||||||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Error Condition="!Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
|
||||||
|
</Target>
|
||||||
|
<Import Project="..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\..\..\..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
|
||||||
|
<Import Project="..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets" Condition="Exists('..\..\..\..\packages\Xamarin.Forms.2.3.4.231\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.targets')" />
|
||||||
</Project>
|
</Project>
|
@ -0,0 +1,72 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Acr.Support" version="2.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="Acr.UserDialogs" version="6.3.3" targetFramework="xamarinios10" />
|
||||||
|
<package id="Autofac" version="4.5.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="IdentityModel" version="1.3.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="xamarinios10" />
|
||||||
|
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="xamarinios10" />
|
||||||
|
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="xamarinios10" />
|
||||||
|
<package id="Microsoft.NETCore.Platforms" version="1.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="Microsoft.Win32.Primitives" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="modernhttpclient" version="2.4.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="NETStandard.Library" version="1.6.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="PCLCrypto" version="2.0.147" targetFramework="xamarinios10" />
|
||||||
|
<package id="PInvoke.BCrypt" version="0.3.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="PInvoke.Kernel32" version="0.3.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="PInvoke.NCrypt" version="0.3.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="PInvoke.Windows.Core" version="0.3.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="SlideOverKit" version="2.1.4" targetFramework="xamarinios10" />
|
||||||
|
<package id="Splat" version="1.6.2" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.AppContext" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Collections" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Collections.Concurrent" version="4.0.12" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.ComponentModel" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Console" version="4.0.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Diagnostics.Debug" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Diagnostics.Tools" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Diagnostics.Tracing" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Globalization" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Globalization.Calendars" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.IO" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.IO.Compression" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.IO.Compression.ZipFile" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.IO.FileSystem" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.IO.FileSystem.Primitives" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Linq" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Linq.Expressions" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Net.Http" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Net.Primitives" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Net.Sockets" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.ObjectModel" version="4.0.12" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Reflection" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Reflection.Extensions" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Reflection.Primitives" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Resources.ResourceManager" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime.Extensions" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime.Handles" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime.InteropServices" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime.InteropServices.RuntimeInformation" version="4.0.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Runtime.Numerics" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Security.Cryptography.Algorithms" version="4.2.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Security.Cryptography.Encoding" version="4.0.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Security.Cryptography.Primitives" version="4.0.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Security.Cryptography.X509Certificates" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Text.Encoding" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Text.Encoding.Extensions" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Text.RegularExpressions" version="4.1.0" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Threading" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Threading.Tasks" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Threading.Timer" version="4.0.1" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Xml.ReaderWriter" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="System.Xml.XDocument" version="4.0.11" targetFramework="xamarinios10" />
|
||||||
|
<package id="Validation" version="2.2.8" targetFramework="xamarinios10" />
|
||||||
|
<package id="WebP.Touch" version="1.0.3" targetFramework="xamarinios10" />
|
||||||
|
<package id="Xam.Plugin.Geolocator" version="3.0.4" targetFramework="xamarinios10" />
|
||||||
|
<package id="Xam.Plugins.Settings" version="2.6.0.12-beta" targetFramework="xamarinios10" />
|
||||||
|
<package id="Xamarin.FFImageLoading" version="2.2.9" targetFramework="xamarinios10" />
|
||||||
|
<package id="Xamarin.FFImageLoading.Forms" version="2.2.9" targetFramework="xamarinios10" />
|
||||||
|
<package id="Xamarin.Forms" version="2.3.4.231" targetFramework="xamarinios10" />
|
||||||
|
</packages>
|
Loading…
x
Reference in New Issue
Block a user