source: ChapterX.Infrastructure/ChapterX.Infrastructure.csproj@ b62cefc

main
Last change on this file since b62cefc was e294f7d, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added JWT authentication

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[877c13c]1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net9.0</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 </PropertyGroup>
8
9 <ItemGroup>
[e294f7d]10 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
[877c13c]11 <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
12 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
13 <PrivateAssets>all</PrivateAssets>
14 </PackageReference>
15 <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0">
16 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17 <PrivateAssets>all</PrivateAssets>
18 </PackageReference>
19 <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <ProjectReference Include="..\ChapterX.Application\ChapterX.Application.csproj" />
24 <ProjectReference Include="..\ChapterX.Domain\ChapterX.Domain.csproj" />
25 </ItemGroup>
26
27</Project>
Note: See TracBrowser for help on using the repository browser.