35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentEmail.Core" Version="3.0.2" />
|
|
<PackageReference Include="FluentEmail.Razor" Version="3.0.2" />
|
|
<PackageReference Include="FluentEmail.Smtp" Version="3.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="9.0.5" />
|
|
<PackageReference Include="Scalar.AspNetCore" Version="2.12.11" />
|
|
<!-- <PackageReference Include="Npgsql" Version="8.0.3" /> -->
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.12.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.5" />
|
|
<!-- <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" /> -->
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../ECommerce.Core/ECommerce.Core.csproj" />
|
|
|
|
<ProjectReference Include="../ECommerce.Contracts/ECommerce.Contracts.csproj" />
|
|
<!-- <ProjectReference Include="..\Domain\Domain.csproj" /> -->
|
|
</ItemGroup>
|
|
|
|
|
|
</Project> |