2023-01-13 15:02:53 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2026-01-13 04:02:56 -05:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<!-- These opt outs should be removed when all warnings are addressed -->
|
|
|
|
|
<WarningsNotAsErrors>$(WarningsNotAsErrors);CA1305</WarningsNotAsErrors>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-01-13 15:02:53 +01:00
|
|
|
<ItemGroup>
|
2025-04-28 22:04:00 -04:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="[8.0.8]">
|
2023-01-13 15:02:53 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\EfShared\MigrationBuilderExtensions.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\Api\Api.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|