Files
it/backend/HardwarePerformance.API/HardwarePerformance.API.csproj

24 lines
999 B
XML
Raw Permalink Normal View History

2025-11-03 17:03:57 +08:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
2025-11-03 19:47:36 +08:00
<PackageReference Include="StackExchange.Redis" Version="2.7.27" />
2025-11-03 17:03:57 +08:00
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.ResponseCompression" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HardwarePerformance.Application\HardwarePerformance.Application.csproj" />
<ProjectReference Include="..\HardwarePerformance.Infrastructure\HardwarePerformance.Infrastructure.csproj" />
</ItemGroup>
</Project>