2022-12-14 15:28:51 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
|
|
<ProjectReference Include="..\..\src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-11-30 23:49:15 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.14">
|
2022-12-14 15:28:51 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\EfShared\MigrationBuilderExtensions.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|