qdr.app.qlbrc.base.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>Quadarax.Application.QLiberace.Base</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\common\qdr.app.qlbrc.common\qdr.app.qlbrc.common.csproj" />
  10. <ProjectReference Include="..\..\Common\qdr.fnd.core.data\qdr.fnd.core.data.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Folder Include="Entities\Base\" />
  14. <Folder Include="Services\" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <PackageReference Include="EFCore.AutomaticMigrations" Version="6.0.4" />
  18. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.9" />
  19. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.9">
  20. <PrivateAssets>all</PrivateAssets>
  21. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  22. </PackageReference>
  23. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.9" />
  24. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.9">
  25. <PrivateAssets>all</PrivateAssets>
  26. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  27. </PackageReference>
  28. </ItemGroup>
  29. </Project>