mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
16 lines
452 B
XML
16 lines
452 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference
|
|
Include="Konscious.Security.Cryptography.Argon2"
|
|
Version="1.3.1"
|
|
/>
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
|
|
</ItemGroup>
|
|
</Project>
|