-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCodout.Security.Scrypt.csproj
More file actions
25 lines (21 loc) · 1.06 KB
/
Copy pathCodout.Security.Scrypt.csproj
File metadata and controls
25 lines (21 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>6.4.0</Version>
<Description>Provider SCrypt para Codout.Security.Core: hash e verificação de senhas com parâmetros configuráveis e rehash incremental.</Description>
<PackageTags>Codout;Security;PasswordHash;SCrypt</PackageTags>
<!-- Compat: o build do pack falha se a API quebrar vs. a versao publicada -->
<EnablePackageValidation>true</EnablePackageValidation>
<PackageValidationBaselineVersion>6.3.0</PackageValidationBaselineVersion>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.9" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.9" />
<PackageReference Include="Sodium.Core" Version="1.4.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Codout.Security.Core\Codout.Security.Core.csproj" />
</ItemGroup>
</Project>