Business.Model.csproj 831 B

123456789101112131415161718192021222324252627
  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="MongoDB.Driver.Core" Version="2.19.0" />
  15. <PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="6.0.3" />
  16. <PackageReference Include="Volo.Abp.Validation" Version="6.0.3" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\Business.Core\Business.Core.csproj" />
  20. </ItemGroup>
  21. </Project>