Sinet.CacheService/Sinet.CacheService.csproj

15 lines
400 B
XML
Raw Normal View History

2023-08-25 14:10:51 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-04-04 20:28:46 +08:00
<TargetFramework>net8.0</TargetFramework>
2023-08-25 14:10:51 +08:00
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2023-09-14 11:29:55 +08:00
<ServerGarbageCollection>false</ServerGarbageCollection>
2023-08-25 14:10:51 +08:00
</PropertyGroup>
<ItemGroup>
2024-04-04 20:28:46 +08:00
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.3" />
2023-08-25 14:10:51 +08:00
</ItemGroup>
</Project>