Files
Beam/Beam.Stealth/Beam.Stealth.csproj
qwsdcvghyu89 a20d48ef02 Add uBlock extension support for Firefox driver
Upgrades Selenium.WebDriver to 4.38.0 and adds logic to automatically install the uBlock extension for FirefoxDriver instances. The uBlock extension file is now included in the project and set to copy to output. Warnings are logged if the extension fails to load.
2025-11-16 00:26:56 +11:00

20 lines
742 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="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
<PackageReference Include="Selenium.WebDriver" Version="4.38.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Beam.Downloaders\Beam.Downloaders.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="uBlock0_1.67.0.firefox.signed.xpi">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>