aboutsummaryrefslogtreecommitdiff
path: root/src/Commands/TestDisplayCommand.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-07 17:01:22 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-07 17:01:22 -0400
commit79d824cfb0e0cc9ff4fab0e0c546a83c0edaae1c (patch)
treed69e962a15493b2e36882810a2cc43d5a0de1a0b /src/Commands/TestDisplayCommand.cs
parentb3015399591bd81b8519f0efa2ec177163f7d04a (diff)
initial commit
Diffstat (limited to 'src/Commands/TestDisplayCommand.cs')
-rw-r--r--src/Commands/TestDisplayCommand.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Commands/TestDisplayCommand.cs b/src/Commands/TestDisplayCommand.cs
new file mode 100644
index 0000000..c716ada
--- /dev/null
+++ b/src/Commands/TestDisplayCommand.cs
@@ -0,0 +1,22 @@
+using System.Threading.Tasks;
+
+using Typin.Console;
+using Typin.Attributes;
+
+using VNLib.Tools.Build.Executor.Model;
+using VNLib.Tools.Build.Executor.Constants;
+
+namespace VNLib.Tools.Build.Executor.Commands
+{
+ [Command("display", Description = "Test command for debugging")]
+ public sealed class TestDisplayCommand(BuildPipeline pipeline, ConfigManager bm) : BaseCommand(pipeline, bm)
+ {
+ public override IFeedManager[] Feeds => [];
+
+ public override async ValueTask ExecStepsAsync(IConsole console)
+ {
+ console.Output.WriteLine("Press any key to exit...");
+ await console.Input.ReadLineAsync(console.GetCancellationToken());
+ }
+ }
+} \ No newline at end of file