03.DW5S.Entity.csproj 745 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>disable</Nullable>
  6. <RootNamespace>DW5S.Entity</RootNamespace>
  7. <GenerateDocumentationFile>False</GenerateDocumentationFile>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Compile Remove="CdbTxInfo.cs" />
  11. <Compile Remove="CxTxInfo.cs" />
  12. <Compile Remove="RecTxInfo.cs" />
  13. <Compile Remove="RefTxInfo.cs" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\DW5S.Basic\01.DW5S.Basic.csproj" />
  17. <ProjectReference Include="..\DW5S.DTO\02.DW5S.DTO.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
  21. </ItemGroup>
  22. </Project>