main
|
Last change
on this file since 99c1e45 was e294f7d, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added JWT authentication
|
-
Property mode
set to
100644
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 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>
|
|---|
| 10 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.0" />
|
|---|
| 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.