Polianin Nikita
cd6f25deba
All logic related to token manipulation has been transferred to the AuthService. Also added TOTP 2FA and rethought the logic of logging into the application
24 lines
853 B
XML
24 lines
853 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Company>Winsomnia</Company>
|
|
<Version>1.1.0</Version>
|
|
<AssemblyVersion>1.1.3.0</AssemblyVersion>
|
|
<FileVersion>1.1.3.0</FileVersion>
|
|
<AssemblyName>Mirea.Api.Security</AssemblyName>
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
|
|
<PackageReference Include="Otp.NET" Version="1.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|