123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <NoWarn>1701;1702;8602;8616;8618;8625;8600;8603;8714;1591</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="FreeRedis" Version="1.2.13" />
- </ItemGroup>
- </Project>
|