mirror of
https://github.com/bitwarden/android.git
synced 2025-01-04 07:17:37 +03:00
48 lines
1.8 KiB
XML
48 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</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" />
|
|
<None Remove="Microsoft.AppCenter.Crashes" />
|
|
<None Remove="Services\Logging\" />
|
|
<None Remove="Attributes\" />
|
|
<None Remove="MessagePack" />
|
|
<None Remove="MessagePack.MSBuild.Tasks" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\eff_long_word_list.txt" />
|
|
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="30.0.1" />
|
|
<PackageReference Include="LiteDB" Version="5.0.16" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
|
<PackageReference Include="zxcvbn-core" Version="7.0.92" />
|
|
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.1" />
|
|
<PackageReference Include="MessagePack" Version="2.4.59" />
|
|
<PackageReference Include="MessagePack.MSBuild.Tasks" Version="2.4.59">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Services\Logging\" />
|
|
<Folder Include="Attributes\" />
|
|
</ItemGroup>
|
|
</Project>
|