DataLayer.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.1" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.1" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="7.0.1" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.1">
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. <PrivateAssets>all</PrivateAssets>
  14. </PackageReference>
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.1" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.1" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.1">
  18. <PrivateAssets>all</PrivateAssets>
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. </PackageReference>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\Domain\Domain.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Folder Include="Migrations\" />
  27. </ItemGroup>
  28. </Project>