mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-16 10:35:27 +01:00
f1419a75f6
* SSO login flow for pre-existing user and no 2FA * 2FA progress * 2FA support * Added SSO flows and functionality * Handle webauthenticator cancellation gracefully * updates & bugfixes * Added state validation to web auth response handling * SSO auth, account registration, and environment settings support for iOS extensions * Added SSO prevalidation to auth process * prevalidation now hitting identity service base url * additional error handling * Requested changes * fixed case
34 lines
1.1 KiB
XML
34 lines
1.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.5" />
|
|
<PackageReference Include="LiteDB" Version="5.0.8" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="PCLCrypto" Version="2.0.147" />
|
|
<PackageReference Include="zxcvbn-core" Version="2.1.44" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|