bitwarden-mobile/src/Core/Core.csproj

29 lines
804 B
XML
Raw Normal View History

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