2023-02-14 17:51:22 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Domain\Newsbot.Collector.Domain.csproj" />
|
2023-02-16 22:19:05 -08:00
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Database\Newsbot.Collector.Database.csproj" />
|
2023-02-14 17:51:22 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-16 22:19:05 -08:00
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.46" />
|
2023-02-26 09:40:04 -08:00
|
|
|
<PackageReference Include="Serilog" Version="2.12.0" />
|
2023-02-16 22:19:05 -08:00
|
|
|
<PackageReference Include="System.ServiceModel.Syndication" Version="7.0.0" />
|
2023-02-14 17:51:22 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
</Project>
|