Skip to content

Commit b2ebd13

Browse files
authored
chore: remove unused StringExtensions.cs (#3037)
1 parent f426f25 commit b2ebd13

File tree

4 files changed

+8
-69
lines changed

4 files changed

+8
-69
lines changed

src/tools/Playwright.Tooling/DriverDownloader.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
using System.Text.RegularExpressions;
3131
using System.Threading.Tasks;
3232
using System.Xml;
33-
using Playwright.Tooling.Options;
33+
using CommandLine;
3434

3535
namespace Playwright.Tooling;
3636

@@ -186,3 +186,10 @@ private async Task<bool> ExecuteAsync()
186186
return true;
187187
}
188188
}
189+
190+
[Verb("download-drivers")]
191+
internal class DownloadDriversOptions
192+
{
193+
[Option(Required = true, HelpText = "Solution path.")]
194+
public string BasePath { get; set; }
195+
}

src/tools/Playwright.Tooling/Extensions/StringExtensions.cs

-33
This file was deleted.

src/tools/Playwright.Tooling/Options/DownloadDriversOptions.cs

-34
This file was deleted.

src/tools/Playwright.Tooling/Program.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
using System.Threading.Tasks;
2626
using CommandLine;
27-
using Playwright.Tooling.Options;
2827

2928
namespace Playwright.Tooling;
3029

0 commit comments

Comments
 (0)