| 1234567891011121314151617181920212223 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net6.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">    <NoWarn>1701;1702;1591;8618;1570;8603;8604;8602;8600;</NoWarn>  </PropertyGroup>  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">    <NoWarn>1701;1702;1591;8618;1570;8603;8604;8602;8600;</NoWarn>  </PropertyGroup>  <ItemGroup>    <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />    <PackageReference Include="StackExchange.Redis" Version="2.6.96" />  </ItemGroup></Project>
 |