Skip to content

Commit cf0629b

Browse files
committed
chore: apply dotnet format command
1 parent 2a38816 commit cf0629b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+70
-70
lines changed

sandbox/CliFrameworkBenchmark/Benchmark.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ public void ExecuteSpectreConsoleCli()
124124
// app.Add("", ConsoleAppFrameworkCommand.Execute);
125125
// app.Run(Arguments);
126126
//}
127-
}
127+
}

sandbox/CliFrameworkBenchmark/Commands/CliFxCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ public class CliFxCommand : CliFx.ICommand
1414

1515
[CommandOption("bool", 'b')]
1616
public bool BoolOption { get; set; }
17-
17+
1818
public ValueTask ExecuteAsync(IConsole console) => ValueTask.CompletedTask;
1919
}

sandbox/CliFrameworkBenchmark/Commands/CliprCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ public class CliprCommand
1616
public void Execute()
1717
{
1818
}
19-
}
19+
}

sandbox/CliFrameworkBenchmark/Commands/CoconaCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ public void Execute(
1111
bool boolOption)
1212
{
1313
}
14-
}
14+
}

sandbox/CliFrameworkBenchmark/Commands/CommandLineParserCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public class CommandLineParserCommand
1414
public void Execute()
1515
{
1616
}
17-
}
17+
}

sandbox/CliFrameworkBenchmark/Commands/ConsoleAppFrameworkCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ public static void Execute(string? str, int intOption, bool boolOption, Cancella
5151
// {
5252
// return Next.InvokeAsync(cancellationToken);
5353
// }
54-
//}
54+
//}

sandbox/CliFrameworkBenchmark/Commands/McMasterCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ public class McMasterCommand
1212
public bool BoolOption { get; set; }
1313

1414
public int OnExecute() => 0;
15-
}
15+
}

sandbox/CliFrameworkBenchmark/Commands/PowerArgsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ namespace Cocona.Benchmark.External.Commands;
1616
// public void Main()
1717
// {
1818
// }
19-
//}
19+
//}

sandbox/CliFrameworkBenchmark/Commands/SpectreConsoleCliCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Spectre.Console.Cli;
1+
using Spectre.Console.Cli;
22
using System.ComponentModel;
33

44
namespace Cocona.Benchmark.External.Commands;
@@ -21,4 +21,4 @@ public override int Execute(CommandContext context, Settings settings)
2121
{
2222
return 0;
2323
}
24-
}
24+
}

sandbox/CliFrameworkBenchmark/Commands/SystemCommandLineCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ public static Task<int> ExecuteAsync(string[] args)
3232
command.Handler = CommandHandler.Create(ExecuteHandler);
3333
return command.InvokeAsync(args);
3434
}
35-
}
35+
}

0 commit comments

Comments
 (0)