30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AMREZ.EOP.Abstractions\AMREZ.EOP.Abstractions.csproj" />
|
|
<ProjectReference Include="..\AMREZ.EOP.Application\AMREZ.EOP.Application.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.3.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.9" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.9" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.9.17" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Migrations\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|