Files
Auth/Auth.Core/Auth.Core.csproj
2026-08-05 21:15:14 +03:00

26 lines
967 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="10.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Auth.Contracts/Auth.Contracts.csproj" />
<ProjectReference Include="../Auth.Domain/Auth.Domain.csproj" />
<ProjectReference Include="..\..\..\SharedLogic\Generic\Generic.csproj" />
</ItemGroup>
</Project>