source: iknow-api/iknow-api.csproj

Last change on this file was 10009b9, checked in by Stefan-Saveski <stefansaveski19@…>, 8 days ago
  • for presentation
  • Property mode set to 100644
File size: 957 bytes
RevLine 
[0b16523]1<Project Sdk="Microsoft.NET.Sdk.Web">
2
3 <PropertyGroup>
4 <TargetFramework>net9.0</TargetFramework>
5 <Nullable>enable</Nullable>
6 <ImplicitUsings>enable</ImplicitUsings>
7 <RootNamespace>iknow_api</RootNamespace>
8 </PropertyGroup>
9
10 <ItemGroup>
[10009b9]11 <PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
12 <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.10" />
[0b16523]13 <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.9" />
[10009b9]14 <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.10">
15 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
16 <PrivateAssets>all</PrivateAssets>
17 </PackageReference>
18 <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
19 <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" />
[0b16523]20 </ItemGroup>
21
22</Project>
Note: See TracBrowser for help on using the repository browser.