2023-08-10 20:07:40 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2023-08-11 09:31:30 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-11-08 18:04:37 +00:00
|
|
|
<LangVersion>12</LangVersion>
|
2023-11-08 14:33:45 +00:00
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
2023-08-11 09:31:30 +00:00
|
|
|
</PropertyGroup>
|
2023-08-10 20:07:40 +00:00
|
|
|
|
2023-08-11 09:31:30 +00:00
|
|
|
<ItemGroup>
|
2023-11-08 14:33:45 +00:00
|
|
|
<PackageReference Include="AsyncFixer" Version="1.6.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-01-29 07:39:18 +00:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
|
|
|
|
<PackageReference Include="DotNext.Unsafe" Version="0.13.12" />
|
2023-11-24 17:25:28 +00:00
|
|
|
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0" />
|
|
|
|
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.0" />
|
2024-03-15 08:01:29 +00:00
|
|
|
<PackageReference Include="Meziantou.Analyzer" Version="2.0.146">
|
2023-11-08 14:33:45 +00: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 17:47:17 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-08-11 09:31:30 +00:00
|
|
|
</ItemGroup>
|
2023-08-10 20:07:40 +00:00
|
|
|
|
|
|
|
</Project>
|