26 lines
995 B
XML
26 lines
995 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>disable</Nullable>
|
|||
|
<CodeAnalysisRuleSet>../Alveus.ruleset</CodeAnalysisRuleSet>
|
|||
|
<IsPackable>false</IsPackable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Astral.Core\Astral.Core.csproj"/>
|
|||
|
<ProjectReference Include="..\Astral.DAL\Astral.DAL.csproj"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1"/>
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.11"/>
|
|||
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|