Files
parr_api/PARR.DAL/PARR.DAL.csproj

29 lines
1.2 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2023-05-17 16:00:50 +10:00
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-05-17 16:30:13 +10:00
<ItemGroup>
<PackageReference Include="InfluxDB.Client" Version="4.17.0" />
2023-05-17 16:30:13 +10:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-12-01 10:05:54 +10:00
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="7.0.12" />
2023-05-17 16:30:13 +10:00
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
2023-09-19 14:34:55 +10:00
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
2023-05-17 16:30:13 +10:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PARR.BLL\PARR.BLL.csproj" />
<ProjectReference Include="..\PARR.Common\PARR.Common.csproj" />
<ProjectReference Include="..\PARR.Constants\PARR.Constants.csproj" />
</ItemGroup>
2023-05-17 16:00:50 +10:00
</Project>