| <Project Sdk="Microsoft.NET.Sdk"> |
| |
| <PropertyGroup> |
| <TargetFramework>netstandard2.0</TargetFramework> |
| <AssemblyName>WebDriver.Support</AssemblyName> |
| <RootNamespace>OpenQA.Selenium.Support</RootNamespace> |
| <BuildSystem>visual-studio</BuildSystem> |
| <LangVersion>12.0</LangVersion> |
| <Nullable>enable</Nullable> |
| </PropertyGroup> |
| |
| <PropertyGroup> |
| <AssemblyTitle>Selenium WebDriver Support</AssemblyTitle> |
| <Description> |
| Selenium is a set of different software tools each with a different approach |
| to supporting browser automation. These tools are highly flexible, allowing |
| many options for locating and manipulating elements within a browser, and one |
| of its key features is the support for automating multiple browser platforms. |
| This package contains .NET support utilites and classes that users may find |
| useful in using Selenium WebDriver. These support classes are mainly intended |
| to spark ideas of what is possible with Selenium WebDriver, and may not be |
| entirely appropriate for production use. |
| </Description> |
| <Company>Selenium Committers</Company> |
| <Copyright>Copyright © Software Freedom Conservancy 2018</Copyright> |
| <Product>Selenium</Product> |
| <Version>4.0.0</Version> |
| <PackageId>Selenium.Support</PackageId> |
| <AssemblyVersion>4.0.0.0</AssemblyVersion> |
| <FileVersion>4.0.0.0</FileVersion> |
| |
| <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| </PropertyGroup> |
| |
| <PropertyGroup> |
| <CsprojIncludePath>..\webdriver</CsprojIncludePath> |
| </PropertyGroup> |
| |
| <ItemGroup> |
| <ProjectReference Include="$(CsprojIncludePath)\Selenium.WebDriver.csproj" /> |
| </ItemGroup> |
| |
| <ItemGroup> |
| <!--Workaround for being unable to have two different types of the same name in WebDriver and in Support, despite both being internal--> |
| <Compile Include="$(CsprojIncludePath)\Properties\StringSyntaxAttribute.cs" /> |
| <Compile Include="$(CsprojIncludePath)\Properties\StringSyntaxConstants.cs" /> |
| </ItemGroup> |
| |
| </Project> |