| 1234567891011121314151617181920212223242526 |
- <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="Volo.Abp.EntityFrameworkCore" Version="6.0.2" />
- <PackageReference Include="Volo.Abp.Validation" Version="6.0.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Business.EntityFrameworkCore\Business.EntityFrameworkCore.csproj" />
- </ItemGroup>
- </Project>
|