bitwarden-android/src/Core/Core.csproj

32 lines
985 B
XML
Raw Normal View History

2019-03-28 04:34:39 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
2019-03-28 04:36:28 +03:00
<RootNamespace>Bit.Core</RootNamespace>
<AssemblyName>BitwardenCore</AssemblyName>
2019-05-28 20:50:01 +03:00
<Configurations>Debug;Release;FDroid</Configurations>
2019-03-28 04:34:39 +03:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
2019-05-29 00:06:57 +03:00
<None Remove="Resources\eff_long_word_list.txt" />
<None Remove="Resources\public_suffix_list.dat" />
</ItemGroup>
<ItemGroup>
2019-05-29 00:06:57 +03:00
<EmbeddedResource Include="Resources\eff_long_word_list.txt" />
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
</ItemGroup>
2019-03-28 06:44:54 +03:00
<ItemGroup>
<PackageReference Include="LiteDB" Version="4.1.4" />
2019-04-23 00:08:37 +03:00
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
2019-03-28 22:43:50 +03:00
<PackageReference Include="PCLCrypto" Version="2.0.147" />
2019-03-28 06:44:54 +03:00
</ItemGroup>
2019-03-28 04:34:39 +03:00
</Project>