blob: 5659ab03e43ff5f28b5cf37093ca2993d4c43096 [file] [edit]
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0</TargetFrameworks>
<AssemblyName>WebDriver.Tests</AssemblyName>
<RootNamespace>OpenQA.Selenium.Tests</RootNamespace>
<IsTestProject>true</IsTestProject>
<OutputType>Exe</OutputType>
<EnableMicrosoftTestingPlatform>true</EnableMicrosoftTestingPlatform>
<UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner>
<EnableNUnitRunner>true</EnableNUnitRunner>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenderProxy" Version="1.0.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="NUnit" Version="4.5.1" />
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageReference Include="Runfiles" Version="0.14.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\webdriver\Selenium.WebDriver.csproj" />
<ProjectReference Include="..\testing.webserver\Selenium.Testing.WebServer.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appconfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="..\..\..\common\extensions\**">
<Link>common\extensions\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>