From 593f47fedb108dece91d4c965da51f1bb284955b Mon Sep 17 00:00:00 2001 From: Riccardo De Agostini Date: Thu, 28 May 2026 07:22:05 +0200 Subject: [PATCH] Fix inconsistent Test subcommand description --- src/Buildvana.Tool/Subcommands/TestCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Buildvana.Tool/Subcommands/TestCommand.cs b/src/Buildvana.Tool/Subcommands/TestCommand.cs index 4e5a0fc..fea6769 100644 --- a/src/Buildvana.Tool/Subcommands/TestCommand.cs +++ b/src/Buildvana.Tool/Subcommands/TestCommand.cs @@ -10,7 +10,7 @@ namespace Buildvana.Tool.Subcommands; [ImplementsCommand("test", consumesAllArguments: true)] -[Description("Build all projects and run tests.")] +[Description("Clean, restore, build all projects, and run tests.")] internal sealed class TestCommand(BuildPipeline pipeline) : IBvCommand { public async Task ExecuteAsync(CancellationToken cancellationToken)