2023-02-15 20:47:21 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Domain\Newsbot.Collector.Domain.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-02-16 22:19:05 -08:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="dapper" Version="2.0.123" />
|
2023-06-19 15:36:43 -07:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.7" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.7">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2023-02-19 21:39:03 -08:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
2023-06-19 15:36:43 -07:00
|
|
|
<PackageReference Include="Npgsql" Version="7.0.4" />
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
|
2023-02-16 22:19:05 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-02-15 20:47:21 -08:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
</Project>
|