Business.EntityFrameworkCore.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <RootNamespace>Business</RootNamespace>
  5. <Authors>XCZ</Authors>
  6. <PackageProjectUrl>https://github.com/WilliamXu96/ABP-MicroService</PackageProjectUrl>
  7. <RepositoryUrl>https://github.com/WilliamXu96/ABP-MicroService</RepositoryUrl>
  8. <RepositoryType>git</RepositoryType>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.5">
  12. <PrivateAssets>all</PrivateAssets>
  13. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  14. </PackageReference>
  15. <PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
  16. <PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore" Version="6.0.3" />
  17. <PackageReference Include="Volo.Abp.EntityFrameworkCore.MySQL" Version="6.0.3" />
  18. <PackageReference Include="Volo.Abp.EntityFrameworkCore.Sqlite" Version="6.0.3" />
  19. <PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="6.0.3" />
  20. <PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="6.0.3" />
  21. <PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="6.0.3" />
  22. <PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="6.0.3" />
  23. <PackageReference Include="Volo.Abp.TenantManagement.EntityFrameworkCore" Version="6.0.3" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\Business.Application.Contracts\Business.Application.Contracts.csproj" />
  27. <ProjectReference Include="..\Business.Domain\Business.Domain.csproj" />
  28. <ProjectReference Include="..\Bussiness.MongoDB\Bussiness.MongoDB.csproj" />
  29. </ItemGroup>
  30. </Project>