From dbcf98ea5125139371b6a543df0dbd0216244d0d Mon Sep 17 00:00:00 2001 From: Philipp Oeschger Date: Tue, 23 Jul 2024 23:33:12 +0200 Subject: [PATCH] also check whether the output returns a process id --- lua/neotest-dotnet/strategies/netcoredbg.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/neotest-dotnet/strategies/netcoredbg.lua b/lua/neotest-dotnet/strategies/netcoredbg.lua index 67efc8e..80bb293 100644 --- a/lua/neotest-dotnet/strategies/netcoredbg.lua +++ b/lua/neotest-dotnet/strategies/netcoredbg.lua @@ -50,6 +50,7 @@ return function(spec) if string.find(output, "Waiting for debugger attach...") or string.find(output, "Please attach debugger") + or string.find(output, "Process Id:") then waitingForDebugger = true end