mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
149 lines
9.3 KiB
XML
149 lines
9.3 KiB
XML
|
<?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>
|
|||
|
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
|||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|||
|
<ProjectGuid>{B490C5DA-639E-4994-ABD2-54222B8A348E}</ProjectGuid>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|||
|
<RootNamespace>Bit.App</RootNamespace>
|
|||
|
<AssemblyName>Bit.App</AssemblyName>
|
|||
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|||
|
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
|
|||
|
<FileAlignment>512</FileAlignment>
|
|||
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|||
|
<NuGetPackageImportStamp>
|
|||
|
</NuGetPackageImportStamp>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|||
|
<DebugSymbols>true</DebugSymbols>
|
|||
|
<DebugType>full</DebugType>
|
|||
|
<Optimize>false</Optimize>
|
|||
|
<OutputPath>bin\Debug\</OutputPath>
|
|||
|
<DefineConstants>TRACE;DEBUG;NETFX_CORE</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;NETFX_CORE</DefineConstants>
|
|||
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
<WarningLevel>4</WarningLevel>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="Abstractions\Services\ISiteService.cs" />
|
|||
|
<Compile Include="Abstractions\Services\IFolderService.cs" />
|
|||
|
<Compile Include="App.cs" />
|
|||
|
<Compile Include="Abstractions\Services\ISecureStorageService.cs" />
|
|||
|
<Compile Include="Abstractions\Services\ISqlService.cs" />
|
|||
|
<Compile Include="Behaviors\EmailValidationBehavior.cs" />
|
|||
|
<Compile Include="Behaviors\RequiredValidationBehavior.cs" />
|
|||
|
<Compile Include="Models\Api\ApiError.cs" />
|
|||
|
<Compile Include="Models\Api\ApiResult.cs" />
|
|||
|
<Compile Include="Models\Api\Request\FolderRequest.cs" />
|
|||
|
<Compile Include="Models\Api\Request\SiteRequest.cs" />
|
|||
|
<Compile Include="Models\Api\Request\TokenRequest.cs" />
|
|||
|
<Compile Include="Models\Api\Response\ErrorResponse.cs" />
|
|||
|
<Compile Include="Models\Api\Response\FolderResponse.cs" />
|
|||
|
<Compile Include="Models\Api\Response\SiteResponse.cs" />
|
|||
|
<Compile Include="Models\Api\Response\TokenResponse.cs" />
|
|||
|
<Compile Include="Models\Api\Response\ProfileResponse.cs" />
|
|||
|
<Compile Include="Models\Cipher.cs" />
|
|||
|
<Compile Include="Models\CipherString.cs" />
|
|||
|
<Compile Include="Models\Data\FolderData.cs" />
|
|||
|
<Compile Include="Abstractions\IDataObject.cs" />
|
|||
|
<Compile Include="Models\Data\SiteData.cs" />
|
|||
|
<Compile Include="Models\Folder.cs" />
|
|||
|
<Compile Include="Models\Site.cs" />
|
|||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|||
|
<Compile Include="Services\DatabaseService.cs" />
|
|||
|
<Compile Include="Services\FolderService.cs" />
|
|||
|
<Compile Include="Services\Repository.cs" />
|
|||
|
<Compile Include="Abstractions\Services\IApiService.cs" />
|
|||
|
<Compile Include="Abstractions\Services\IAuthService.cs" />
|
|||
|
<Compile Include="Abstractions\Services\ICryptoService.cs" />
|
|||
|
<Compile Include="Abstractions\Services\IDatabaseService.cs" />
|
|||
|
<Compile Include="Services\SiteService.cs" />
|
|||
|
<Compile Include="Services\AuthService.cs" />
|
|||
|
<Compile Include="Services\CryptoService.cs" />
|
|||
|
<Compile Include="Models\View\VaultView.cs" />
|
|||
|
<Compile Include="Pages\LoginPage.cs" />
|
|||
|
<Compile Include="Pages\VaultEditFolderPage.cs" />
|
|||
|
<Compile Include="Pages\VaultAddFolderPage.cs" />
|
|||
|
<Compile Include="Pages\VaultAddSitePage.cs" />
|
|||
|
<Compile Include="Pages\VaultViewSitePage.cs" />
|
|||
|
<Compile Include="Pages\VaultEditSitePage.cs" />
|
|||
|
<Compile Include="Pages\VaultListPage.cs" />
|
|||
|
<Compile Include="Services\ApiService.cs" />
|
|||
|
<Compile Include="Utilities\Extentions.cs" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<None Include="packages.config" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\Portable.BouncyCastle.1.8.1\lib\portable-net45+win8+wpa81+MonoTouch10+MonoAndroid10+xamarinmac20+xamarinios10\crypto.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\CommonServiceLocator.1.3\lib\portable-net4+sl5+netcore45+wpa81+wp8\Microsoft.Practices.ServiceLocation.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Microsoft.Practices.Unity, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\Unity.3.5.1405-prerelease\lib\portable-net45+wp80+win8+wpa81+MonoAndroid10+MonoTouch10\Microsoft.Practices.Unity.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\Portable-Net45+WinRT45+WP8+WPA81\ModernHttpClient.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\Newtonsoft.Json.8.0.3\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="SQLite-net, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\sqlite-net-pcl.1.1.1\lib\portable-net45+wp8+wpa81+win8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLite-net.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="SQLitePCL.raw, Version=0.8.5.0, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\SQLitePCL.raw.0.8.6\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCL.raw.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.2.0.31\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\Xamarin.Forms.2.2.0.31\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\Xamarin.Forms.2.2.0.31\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
<Reference Include="XLabs.Ioc, Version=2.0.5782.12218, Culture=neutral, processorArchitecture=MSIL">
|
|||
|
<HintPath>..\..\packages\XLabs.IoC.2.0.5782\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1+Xamarin.iOS10\XLabs.Ioc.dll</HintPath>
|
|||
|
<Private>True</Private>
|
|||
|
</Reference>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup />
|
|||
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
|||
|
<Import Project="..\..\packages\Xamarin.Forms.2.2.0.31\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets" Condition="Exists('..\..\packages\Xamarin.Forms.2.2.0.31\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" />
|
|||
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|||
|
<PropertyGroup>
|
|||
|
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|||
|
</PropertyGroup>
|
|||
|
<Error Condition="!Exists('..\..\packages\Xamarin.Forms.2.2.0.31\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Xamarin.Forms.2.2.0.31\build\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.targets'))" />
|
|||
|
</Target>
|
|||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|||
|
<Target Name="BeforeBuild">
|
|||
|
</Target>
|
|||
|
<Target Name="AfterBuild">
|
|||
|
</Target>
|
|||
|
-->
|
|||
|
</Project>
|