Skip to content

Commit ca11d80

Browse files
committed
dotnet format
1 parent 618adc8 commit ca11d80

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/docs-assembler/Program.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// See https://aka.ms/new-console-template for more information
1+
// See https://aka.ms/new-console-template for more information
22

33
using System.Collections.Concurrent;
44
using System.Diagnostics;
@@ -47,10 +47,11 @@ await Task.Run(() =>
4747
}, c);
4848
}).ConfigureAwait(false);
4949

50-
foreach(var kv in dict.OrderBy(kv => kv.Value.Elapsed))
50+
foreach (var kv in dict.OrderBy(kv => kv.Value.Elapsed))
5151
Console.WriteLine($"-> {kv.Key}\ttook: {kv.Value.Elapsed}");
5252
});
53-
app.Add("list", async Task (CancellationToken ctx) =>{
53+
app.Add("list", async Task (CancellationToken ctx) =>
54+
{
5455

5556
var assemblyPath = Path.Combine(Paths.Root.FullName, $".artifacts/assembly");
5657
var dir = new DirectoryInfo(assemblyPath);
@@ -67,7 +68,7 @@ await Task.Run(() =>
6768
);
6869
dictionary.Add(d.Name, capture.ConsoleOut.FirstOrDefault()?.Line ?? "unknown");
6970
}
70-
foreach(var kv in dictionary.OrderBy(kv => kv.Value))
71+
foreach (var kv in dictionary.OrderBy(kv => kv.Value))
7172
Console.WriteLine($"-> {kv.Key}\tbranch: {kv.Value}");
7273

7374
await Task.CompletedTask;
@@ -83,6 +84,6 @@ public void Handle(LineOut lineOut) => lineOut.CharsOrString(
8384
r => Console.Write(prefix + ": " + r),
8485
l => Console.WriteLine(prefix + ": " + l));
8586

86-
public void Handle(Exception e) {}
87+
public void Handle(Exception e) { }
8788
}
8889
}

0 commit comments

Comments
 (0)