From 4ad34ea6abc80aa95b5e67133de007c500fe4587 Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Tue, 5 Nov 2024 15:33:57 -0500 Subject: [PATCH] Allow debugging of the CLI, preface the command with [debug] to await debugger connection. --- ReCodeItCLI/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ReCodeItCLI/Program.cs b/ReCodeItCLI/Program.cs index 2a31726..dc3d4b0 100644 --- a/ReCodeItCLI/Program.cs +++ b/ReCodeItCLI/Program.cs @@ -6,6 +6,7 @@ public static class Program public static async Task Main() => await new CliApplicationBuilder() .AddCommandsFromThisAssembly() + .AllowDebugMode() .SetExecutableName("ReCodeIt") .Build() .RunAsync();