Skip to content

Commit a0a5f1b

Browse files
committed
Fix dotnet format
1 parent dd08c82 commit a0a5f1b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

external/.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
root = true
55

66
# ignore submodule
7-
[gcm/**]
7+
[**]
88
generated_code = true

src/dotnet-tor/ConfigureCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ async Task RunAsync()
4242
"notepad.exe" : "nano");
4343

4444
var configPath = Path.Combine(
45-
settings.ExtractedToolsDirectory,
46-
Path.GetFileNameWithoutExtension(zipPath),
45+
settings.ExtractedToolsDirectory,
46+
Path.GetFileNameWithoutExtension(zipPath),
4747
"Data", "Tor", "torrc");
4848

4949
var torProxy = new TorSharpProxy(settings);

src/dotnet-tor/Properties/launchSettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"profiles": {
33
"dotnet-tor": {
44
"commandName": "Project",
5-
"commandLineArgs": "config"
5+
"commandLineArgs": "-?"
66
}
77
}
88
}

src/dotnet-tor/TorCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async Task RunAsync(int proxy, int socks, int control, CancellationToken cancell
3838
ExtractedToolsDirectory = Path.Combine(torPath, "bin"),
3939
PrivoxySettings =
4040
{
41-
Port = proxy,
41+
Port = proxy,
4242
},
4343
TorSettings =
4444
{
@@ -48,7 +48,7 @@ async Task RunAsync(int proxy, int socks, int control, CancellationToken cancell
4848
},
4949
};
5050

51-
await AnsiConsole.Status().StartAsync("Fetching Tor tools",
51+
await AnsiConsole.Status().StartAsync("Fetching Tor tools",
5252
async _ => await new TorSharpToolFetcher(settings, new HttpClient()).FetchAsync());
5353

5454
cancellation.ThrowIfCancellationRequested();

0 commit comments

Comments
 (0)