subtitle-downloader/subtitle-downloader.csproj

19 lines
580 B
XML
Raw Normal View History

2023-02-10 22:03:31 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>subtitle_downloader</RootNamespace>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishGeckoDriver>true</PublishGeckoDriver>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Selenium.WebDriver" Version="4.8.0" />
<PackageReference Include="Selenium.WebDriver.GeckoDriver" Version="0.32.1" />
</ItemGroup>
</Project>