Bussiness.Model.csproj 786 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <WarningLevel>6</WarningLevel>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <WarningLevel>6</WarningLevel>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="6.0.2" />
  15. <PackageReference Include="Volo.Abp.Validation" Version="6.0.0" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\Business.EntityFrameworkCore\Business.EntityFrameworkCore.csproj" />
  19. </ItemGroup>
  20. </Project>