EasyDev.Database.csproj 539 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
  9. </ItemGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\EasyDevCore.Common\EasyDevCore.Common.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Folder Include="EntityCore\" />
  15. <Folder Include="EntityTable\" />
  16. </ItemGroup>
  17. </Project>