mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 18:14:01 +00:00
24 lines
614 B
XML
24 lines
614 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>Infrastructure.Jwt</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference
|
|
Include="Microsoft.IdentityModel.JsonWebTokens"
|
|
Version="8.2.1"
|
|
/>
|
|
<PackageReference
|
|
Include="System.IdentityModel.Tokens.Jwt"
|
|
Version="8.2.1"
|
|
/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Domain\Domain.Exceptions\Domain.Exceptions.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|