2023-05-17 22:13:15 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-07-31 00:31:19 +02:00
|
|
|
<OutputType>Exe</OutputType>
|
2023-05-17 22:13:15 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-05-19 16:23:37 +02:00
|
|
|
<ItemGroup>
|
2023-06-01 13:13:53 +02:00
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.46" />
|
2023-05-19 16:23:37 +02:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2023-06-05 19:46:22 +02:00
|
|
|
<PackageReference Include="PuppeteerSharp" Version="10.0.0" />
|
2023-05-19 16:23:37 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-20 21:47:54 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Logging\Logging.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-07-31 00:31:19 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="..\.dockerignore">
|
|
|
|
<Link>.dockerignore</Link>
|
|
|
|
<DependentUpon>Dockerfile</DependentUpon>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-17 22:13:15 +02:00
|
|
|
</Project>
|