ProductionLineMonitor.EntityFramework.csproj 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <PackageReference Include="Dapper" Version="2.0.123" />
  8. <PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.25" />
  9. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.17" />
  10. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.17">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.17" />
  15. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="5.0.17" />
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.17" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.17">
  18. <PrivateAssets>all</PrivateAssets>
  19. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  20. </PackageReference>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\ProductionLineMonitor.Core\ProductionLineMonitor.Core.csproj" />
  24. </ItemGroup>
  25. </Project>