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>
2025-03-11 09:39:06 +08:00
<TargetFramework>net9.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>
2025-03-11 09:39:06 +08:00
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.2" />
2023-08-25 14:10:51 +08:00
</ItemGroup>
</Project>