<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.2"/> <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.2"> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> <PackageReference Include="NLog" Version="4.7.13"/> <PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.1"/> </ItemGroup> <ItemGroup> <ProjectReference Include="..\app.Model\app.Model.csproj"/> <ProjectReference Include="..\app.Interface\app.Interface.csproj"/> <ProjectReference Include="..\app.Share.Common\app.Share.Common.csproj"/> </ItemGroup> </Project>