| 1234567891011121314151617181920 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net6.0</TargetFramework>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">    <OutputPath>D:\Source\WCS\DLL\</OutputPath>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="FreeRedis" Version="0.3.5" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\DBHelper\DBHelper.csproj" />    <ProjectReference Include="..\WCS.Entity\WCS.Entity.csproj" />  </ItemGroup></Project>
 |