OASystem.RedisRepository.csproj 724 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <NoWarn>1701;1702;1591;8618;1570;8603;8604;8602;8600;</NoWarn>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <NoWarn>1701;1702;1591;8618;1570;8603;8604;8602;8600;</NoWarn>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
  15. <PackageReference Include="StackExchange.Redis" Version="2.6.96" />
  16. </ItemGroup>
  17. </Project>