blob: ceb193ff788873d2cd05a77b45e5fb08b60a0a28 [file] [edit]
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0</TargetFrameworks>
<AssemblyName>WebDriver.Remote.Tests</AssemblyName>
<IsTestProject>true</IsTestProject>
<OutputType>Exe</OutputType>
<EnableMicrosoftTestingPlatform>true</EnableMicrosoftTestingPlatform>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<EnableNUnitRunner>true</EnableNUnitRunner>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\webdriver\Selenium.WebDriver.Tests.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="WebDriver.Remote.Tests.nunit">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>