| 12345678910111213141516171819202122232425 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>netstandard2.1</TargetFramework>    <Nullable>enable</Nullable>    <GenerateDocumentationFile>True</GenerateDocumentationFile>  </PropertyGroup>  <ItemGroup>    <None Remove="Service\SXService.cs~RF1102d8d.TMP" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="AutoMapper" Version="12.0.1" />    <PackageReference Include="CSRedisCore" Version="3.8.670" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\wms.dataservice\wms.dataservice.csproj" />    <ProjectReference Include="..\wms.dto\wms.dto.csproj" />    <ProjectReference Include="..\wms.package\wms.package.csproj" />    <ProjectReference Include="..\wms.sqlsugar\wms.sqlsugar.csproj" />  </ItemGroup></Project>
 |