2019-03-28 04:34:39 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-09-22 18:17:17 +03:00
|
|
|
|
<TargetFramework>netstandard2.1</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>
|
|
|
|
|
|
2019-04-15 23:16:53 +03:00
|
|
|
|
<ItemGroup>
|
2019-05-29 00:06:57 +03:00
|
|
|
|
<None Remove="Resources\eff_long_word_list.txt" />
|
2019-04-15 23:16:53 +03:00
|
|
|
|
<None Remove="Resources\public_suffix_list.dat" />
|
2022-03-02 20:15:16 +03:00
|
|
|
|
<None Remove="Microsoft.AppCenter.Crashes" />
|
|
|
|
|
<None Remove="Services\Logging\" />
|
2022-08-23 18:34:29 +03:00
|
|
|
|
<None Remove="Attributes\" />
|
2023-03-09 21:45:51 +03:00
|
|
|
|
<None Remove="MessagePack" />
|
|
|
|
|
<None Remove="MessagePack.MSBuild.Tasks" />
|
2023-06-28 00:49:38 +03:00
|
|
|
|
<None Remove="Services\EmailForwarders\" />
|
2019-04-15 23:16:53 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-05-29 00:06:57 +03:00
|
|
|
|
<EmbeddedResource Include="Resources\eff_long_word_list.txt" />
|
2019-04-15 23:16:53 +03:00
|
|
|
|
<EmbeddedResource Include="Resources\public_suffix_list.dat" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-03-28 06:44:54 +03:00
|
|
|
|
<ItemGroup>
|
2023-05-11 18:13:30 +03:00
|
|
|
|
<PackageReference Include="CsvHelper" Version="30.0.1" />
|
2023-08-16 19:48:54 +03:00
|
|
|
|
<PackageReference Include="LiteDB" Version="5.0.17" />
|
2023-05-11 18:13:30 +03:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2019-03-28 22:43:50 +03:00
|
|
|
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
2021-05-13 21:15:26 +03:00
|
|
|
|
<PackageReference Include="zxcvbn-core" Version="7.0.92" />
|
2023-08-16 19:48:54 +03:00
|
|
|
|
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
|
2023-03-09 21:45:51 +03:00
|
|
|
|
<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>
|
2019-03-28 06:44:54 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-03-02 20:15:16 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Services\Logging\" />
|
2022-08-23 18:34:29 +03:00
|
|
|
|
<Folder Include="Attributes\" />
|
2023-06-28 00:49:38 +03:00
|
|
|
|
<Folder Include="Services\EmailForwarders\" />
|
2022-03-02 20:15:16 +03:00
|
|
|
|
</ItemGroup>
|
2019-03-28 04:34:39 +03:00
|
|
|
|
</Project>
|