main
|
Last change
on this file since acf690c was e294f7d, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added JWT authentication
|
-
Property mode
set to
100644
|
|
File size:
951 bytes
|
| Line | |
|---|
| 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
|---|
| 2 |
|
|---|
| 3 | <PropertyGroup>
|
|---|
| 4 | <TargetFramework>net9.0</TargetFramework>
|
|---|
| 5 | <Nullable>enable</Nullable>
|
|---|
| 6 | <ImplicitUsings>enable</ImplicitUsings>
|
|---|
| 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 | <PrivateAssets>all</PrivateAssets>
|
|---|
| 13 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|---|
| 14 | </PackageReference>
|
|---|
| 15 | <PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
|
|---|
| 16 | </ItemGroup>
|
|---|
| 17 |
|
|---|
| 18 | <ItemGroup>
|
|---|
| 19 | <ProjectReference Include="..\ChapterX.Application\ChapterX.Application.csproj" />
|
|---|
| 20 | <ProjectReference Include="..\ChapterX.Domain\ChapterX.Domain.csproj" />
|
|---|
| 21 | <ProjectReference Include="..\ChapterX.Infrastructure\ChapterX.Infrastructure.csproj" />
|
|---|
| 22 | </ItemGroup>
|
|---|
| 23 |
|
|---|
| 24 | </Project>
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.