28 lines
984 B
XML
28 lines
984 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentEmail.Core" Version="3.0.2" />
|
|
<PackageReference Include="FluentEmail.Smtp" Version="3.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Chat.Contracts/Chat.Contracts.csproj" />
|
|
<ProjectReference Include="../Chat.Domain/Chat.Domain.csproj" />
|
|
<ProjectReference Include="..\..\..\..\..\SharedLogic\Generic\Generic.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project> |