MireaBackend/Security/Security.csproj

22 lines
757 B
XML
Raw Permalink Normal View History

2024-05-29 04:03:20 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Company>Winsomnia</Company>
2024-09-07 04:56:41 +03:00
<Version>1.0.0</Version>
<AssemblyVersion>1.0.3.0</AssemblyVersion>
<FileVersion>1.0.3.0</FileVersion>
2024-05-29 04:03:20 +03:00
<AssemblyName>Mirea.Api.Security</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
</PropertyGroup>
2024-05-29 04:03:47 +03:00
<ItemGroup>
2024-07-04 23:57:44 +03:00
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1" />
2024-05-29 04:08:51 +03:00
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
2024-06-10 22:05:18 +03:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
2024-05-29 04:03:47 +03:00
</ItemGroup>
2024-05-29 04:03:20 +03:00
</Project>