| 12345678910111213141516171819202122232425 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net6.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="SqlSugarCore" Version="5.1.4.106" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\WMS.BZInfo\WMS.BZInfo.csproj" />  </ItemGroup>  <ItemGroup>    <Reference Include="wms.dto">      <HintPath>..\WMS.BZWeb\DLL\wms.dto.dll</HintPath>    </Reference>  </ItemGroup> </Project>
 |