2022-01-11 10:40:51 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2025-02-11 08:49:14 -05:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<!-- Temp exclusions until warnings are fixed -->
|
2025-05-09 10:12:43 -04:00
|
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CS0108</WarningsNotAsErrors>
|
2025-02-11 08:49:14 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2022-01-11 10:40:51 +01:00
|
|
|
<ItemGroup>
|
2023-04-24 13:51:08 -04:00
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
2024-06-07 09:55:59 -04:00
|
|
|
<PackageReference Include="linq2db" Version="5.4.1" />
|
2025-04-28 22:04:00 -04:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[8.0.8]" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="[8.0.8]" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[8.0.8]" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="[8.0.4]" />
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="[8.0.2]" />
|
|
|
|
|
<PackageReference Include="linq2db.EntityFrameworkCore" Version="[8.1.0]" />
|
2022-01-11 10:40:51 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|