| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFrameworks>net10.0</TargetFrameworks> |
| <AssemblyName>Selenium.Support.Tests</AssemblyName> |
| <RootNamespace>OpenQA.Selenium.Support.Tests</RootNamespace> |
| <IsTestProject>true</IsTestProject> |
| <OutputType>Exe</OutputType> |
| <EnableMicrosoftTestingPlatform>true</EnableMicrosoftTestingPlatform> |
| <UseMicrosoftTestingPlatformRunner>true</UseMicrosoftTestingPlatformRunner> |
| <EnableNUnitRunner>true</EnableNUnitRunner> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" /> |
| <PackageReference Include="Moq" Version="4.20.72" /> |
| <PackageReference Include="NUnit" Version="4.6.0" /> |
| <PackageReference Include="NUnit.Analyzers" Version="4.13.0" /> |
| <PackageReference Include="NUnit3TestAdapter" Version="6.2.0" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="..\..\src\support\Selenium.Support.csproj" /> |
| <ProjectReference Include="..\webdriver\Selenium.WebDriver.Tests.csproj" /> |
| <ProjectReference Include="..\testing.webserver\Selenium.Testing.WebServer.csproj" /> |
| </ItemGroup> |
| |
| </Project> |