mirror of
https://github.com/bitwarden/android.git
synced 2025-01-10 02:07:33 +03:00
33df456cfd
* First pass at vault export UI * Password validation via cryptoService * Export service framework * support for constructing json export data * Support for constructing csv export data * Cleanup and simplification * Completion of vault export feature * Formatting and simplification * Use dialog instead of toast for invalid master password entry
32 lines
1 KiB
XML
32 lines
1 KiB
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="CsvHelper" Version="15.0.0" />
|
|
<PackageReference Include="LiteDB" Version="4.1.4" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|