1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <RootNamespace>DW5S.Entity</RootNamespace>
- <GenerateDocumentationFile>False</GenerateDocumentationFile>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="CdbTxInfo.cs" />
- <Compile Remove="CxTxInfo.cs" />
- <Compile Remove="RecTxInfo.cs" />
- <Compile Remove="RefTxInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\DW5S.Basic\01.DW5S.Basic.csproj" />
- <ProjectReference Include="..\DW5S.DTO\02.DW5S.DTO.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.3" />
- </ItemGroup>
- </Project>
|