| 123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <WarningLevel>6</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <WarningLevel>6</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MongoDB.Driver.Core" Version="2.19.0" />
- <PackageReference Include="Volo.Abp.EntityFrameworkCore" Version="6.0.3" />
- <PackageReference Include="Volo.Abp.Validation" Version="6.0.3" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Business.Core\Business.Core.csproj" />
- </ItemGroup>
- </Project>
|