2023-08-10 22:07:40 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2023-08-11 11:31:30 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-11-08 19:04:37 +01:00
|
|
|
<LangVersion>12</LangVersion>
|
2025-01-16 14:30:40 +01:00
|
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
2023-08-11 11:31:30 +02:00
|
|
|
</PropertyGroup>
|
2023-08-10 22:07:40 +02:00
|
|
|
|
2023-08-11 11:31:30 +02:00
|
|
|
<ItemGroup>
|
2024-09-16 21:15:50 +02:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
|
2025-01-26 16:47:46 +01:00
|
|
|
<PackageReference Include="DotNext.Unsafe" Version="5.18.0" />
|
2024-02-07 16:40:36 +01:00
|
|
|
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0"/>
|
2024-09-16 21:15:50 +02:00
|
|
|
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1" />
|
2025-01-26 16:47:46 +01:00
|
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.186">
|
2023-11-08 15:33:45 +01:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2025-01-26 16:47:46 +01:00
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19">
|
2023-10-27 19:47:17 +02:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-08-11 11:31:30 +02:00
|
|
|
</ItemGroup>
|
2023-08-10 22:07:40 +02:00
|
|
|
|
|
|
|
</Project>
|