mirror of
https://github.com/bitwarden/android.git
synced 2024-12-26 19:08:32 +03:00
31 lines
985 B
XML
31 lines
985 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<RootNamespace>Bit.Core</RootNamespace>
|
|
<AssemblyName>BitwardenCore</AssemblyName>
|
|
<Configurations>Debug;Release;FDroid</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>pdbonly</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Resources\eff_long_word_list.txt" />
|
|
<None Remove="Resources\public_suffix_list.dat" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\eff_long_word_list.txt" />
|
|
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LiteDB" Version="4.1.4" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|