Skip to content

Commit 354c04a

Browse files
committed
Adding .nuspec file for WebDriver assembly for .NET Core/.NET Standard support
1 parent 8fe5a92 commit 354c04a

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

dotnet/src/webdriver/WebDriver.nuspec

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>Selenium.WebDriver</id>
5+
<version>$version$</version>
6+
<authors>Selenium Committers</authors>
7+
<copyright>Copyright © 2017 Software Freedom Conservancy</copyright>
8+
<owners>selenium</owners>
9+
<title>Selenium WebDriver</title>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<summary>.NET bindings for the Selenium WebDriver API</summary>
12+
<description>
13+
Selenium is a set of different software tools each with a different approach
14+
to supporting browser automation. These tools are highly flexible, allowing
15+
many options for locating and manipulating elements within a browser, and one
16+
of its key features is the support for automating multiple browser platforms.
17+
This package contains the .NET bindings for the concise and object-based
18+
Selenium WebDriver API, which uses native OS-level events to manipulate the
19+
browser, bypassing the JavaScript sandbox, and does not require the Selenium
20+
Server to automate the browser.
21+
</description>
22+
<projectUrl>https://www.seleniumhq.org</projectUrl>
23+
<repository url="https://github.com/SeleniumHQ/selenium" />
24+
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
25+
<iconUrl>http://seleniumhq.org/images/big-logo.png</iconUrl>
26+
<tags>selenium webdriver browser automation</tags>
27+
<dependencies>
28+
<group targetFramework=".NETFramework3.5" />
29+
<group targetFramework=".NETFramework4.0" />
30+
<group targetFramework=".NETFramework4.5" />
31+
<group targetFramework=".NETStandard2.0" />
32+
</dependencies>
33+
<frameworkAssemblies>
34+
<frameworkAssembly assemblyName="System.Drawing" />
35+
</frameworkAssemblies>
36+
</metadata>
37+
<files>
38+
<file src="**" target="lib" />
39+
</files>
40+
</package>

0 commit comments

Comments
 (0)