Skip to content

Commit 6c2f7c5

Browse files
authored
Refactor project and build scripts (#27)
Override and close #26 PR
1 parent 6393843 commit 6c2f7c5

20 files changed

+107
-329
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,3 +241,6 @@ _Pvt_Extensions
241241

242242
# SonarQube
243243
.sonarqube
244+
245+
# Coverage
246+
opencover.xml

IntegrationTests/IntegrationTests.csproj

Lines changed: 0 additions & 106 deletions
This file was deleted.

IntegrationTests/Properties/AssemblyInfo.cs

Lines changed: 0 additions & 41 deletions
This file was deleted.

IntegrationTests/packages.config

Lines changed: 0 additions & 10 deletions
This file was deleted.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build status](https://ci.appveyor.com/api/projects/status/kjpqb5twmpxw6lpl?svg=true)](https://ci.appveyor.com/project/rosolko/webdrivermanager-net)
2-
[![Quality Gate](https://sonarcloud.io/api/project_badges/measure?project=webdrivermanager.net&metric=alert_status)](https://sonarcloud.io/dashboard?id=webdrivermanager.net)
3-
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=webdrivermanager.net&metric=coverage)](https://sonarcloud.io/dashboard?id=webdrivermanager.net)
2+
[![Quality Gate](https://sonarcloud.io/api/project_badges/measure?project=rosolko_WebDriverManager.Net&metric=alert_status)](https://sonarcloud.io/dashboard?id=rosolko_WebDriverManager.Net)
3+
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=rosolko_WebDriverManager.Net&metric=coverage)](https://sonarcloud.io/dashboard?id=rosolko_WebDriverManager.Net)
44
[![NuGet](https://img.shields.io/nuget/v/WebDriverManager.svg)](https://www.nuget.org/packages/WebDriverManager)
55

66
# WebDriverManager.Net
@@ -33,7 +33,7 @@ Use the GUI or the following command in the Package Manager Console:
3333

3434
## Usage
3535

36-
Target framework version is **4.5.2**.
36+
Target is **netstandard2.0**.
3737

3838
After installation you can let WebDriverManager.Net to do manage WebDriver binaries for your application/test. Take a look to this NUnit example which uses Chrome with Selenium WebDriver:
3939

@@ -211,10 +211,10 @@ Thanks to the following companies for generously providing their services/produc
211211

212212
## About
213213

214-
WebDriverManager.Net (Copyright © 2016-2019) is a personal project of [Alexander Rosolko] licensed under [MIT] license.
214+
WebDriverManager.Net (Copyright © 2016-2019) is a personal project of [Aliaksandr Rasolka] licensed under [MIT] license.
215215
Comments, questions and suggestions are always very welcome!
216216

217-
[Alexander Rosolko]: https://github.com/rosolko
217+
[Aliaksandr Rasolka]: https://github.com/rosolko
218218
[WebDriverManager.Net]: https://www.nuget.org/packages/WebDriverManager
219219
[Selenium Webdriver]: http://docs.seleniumhq.org/projects/webdriver
220220
[MIT]: https://github.com/rosolko/WebDriverManager.Net/blob/master/LICENSE
File renamed without changes.
File renamed without changes.
File renamed without changes.

IntegrationTests/BinaryServiceTests.cs renamed to WebDriverManager.Tests/BinaryServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using WebDriverManager.Services.Impl;
44
using Xunit;
55

6-
namespace IntegrationTests
6+
namespace WebDriverManager.Tests
77
{
88
public class BinaryServiceTests : BinaryService
99
{

IntegrationTests/DriverDownloadTests.cs renamed to WebDriverManager.Tests/DriverDownloadTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
using System.Collections;
22
using System.Collections.Generic;
3-
using WebDriverManager;
43
using WebDriverManager.DriverConfigs;
54
using WebDriverManager.DriverConfigs.Impl;
65
using Xunit;
76

8-
namespace IntegrationTests
7+
namespace WebDriverManager.Tests
98
{
109
public class DriverData : IEnumerable<object[]>
1110
{

0 commit comments

Comments
 (0)