2017-03-22 16:10:46 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-10-27 18:55:55 +05:30
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2017-03-22 16:10:46 +01:00
|
|
|
|
<RootNamespace>Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-23 14:58:59 -08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
2019-09-19 10:12:14 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-02-23 14:58:59 -08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
2019-11-06 11:14:19 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-03-22 16:10:46 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\EventBus\EventBus.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|