Files
it/backend/HardwarePerformance.Infrastructure/HardwarePerformance.Infrastructure.csproj

27 lines
1.2 KiB
XML
Raw Permalink Normal View History

2025-11-03 17:03:57 +08:00
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
<PackageReference Include="MySql.Data" Version="9.0.0" />
2025-11-03 19:47:36 +08:00
<PackageReference Include="StackExchange.Redis" Version="2.7.27" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
2025-11-03 17:03:57 +08:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HardwarePerformance.Core\HardwarePerformance.Core.csproj" />
2025-11-03 19:47:36 +08:00
<ProjectReference Include="..\HardwarePerformance.Application\HardwarePerformance.Application.csproj" />
2025-11-03 17:03:57 +08:00
</ItemGroup>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>