Files
Beam/Beam.Dynamic/Beam.Dynamic.csproj
qwsdcvghyu89 2958a26e4f Refactor downloaders to use generic options and unify logic
Replaces specialized binary and HTML downloaders with a generic, options-driven UnitDownloader and UnitFragmentDownloader pattern. Introduces UnitDownloaderOptions and builder classes for flexible configuration, updates interfaces and method signatures to support progress reporting, and removes redundant binary-specific classes. Updates Playwright and Stealth downloaders to use the new generic base, and adds improved error handling and reporting. Also updates dependency versions and makes minor API consistency improvements across the Fluent and Models layers.
2025-09-29 21:27:56 +10:00

19 lines
868 B
XML

<?xml version='1.0' encoding='utf-8'?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="aeqw89.DataKeys" Version="2.1.1" />
<PackageReference Include="aeqw89.PersistentData" Version="1.4.5" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
<PackageReference Include="Microsoft.Recognizers.Text.Number" Version="1.8.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Beam.Abstractions\Beam.Abstractions.csproj" />
<ProjectReference Include="..\Beam.Exceptions\Beam.Exceptions.csproj" />
<ProjectReference Include="..\Beam.Models\Beam.Models.csproj" />
</ItemGroup>
</Project>