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>
|
2023-11-08 15:33:45 +01:00
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.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>
|
2023-11-08 15:33:45 +01:00
|
|
|
<PackageReference Include="AsyncFixer" Version="1.6.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-01-29 08:39:18 +01:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
|
2024-03-15 10:01:07 +00:00
|
|
|
<PackageReference Include="DotNext.Unsafe" Version="0.14.0" />
|
2023-11-24 18:25:28 +01:00
|
|
|
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0" />
|
|
|
|
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.0" />
|
2024-04-28 02:01:05 +00:00
|
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.150">
|
2023-11-08 15:33:45 +01:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-02-12 14:26:32 +00:00
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.9.28">
|
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>
|