04.DW5S.Repostory.csproj 1.4 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <RootNamespace>DW5S.Repostory</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Autofac" Version="8.2.0" />
  10. <PackageReference Include="EFCore.NamingConventions" Version="9.0.0" />
  11. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
  12. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.3">
  13. <PrivateAssets>all</PrivateAssets>
  14. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  15. </PackageReference>
  16. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.3" />
  17. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.3" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.3">
  19. <PrivateAssets>all</PrivateAssets>
  20. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  21. </PackageReference>
  22. <PackageReference Include="Oracle.EntityFrameworkCore" Version="9.23.60" />
  23. <PackageReference Include="SQLitePCLRaw.provider.e_sqlite3" Version="2.1.11" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\DW5S.Entity\03.DW5S.Entity.csproj" />
  27. </ItemGroup>
  28. </Project>