Implementation of script debugger component with RPC via SignalR

This commit is contained in:
Pat Hartl 2025-12-10 20:55:38 -06:00
parent f242f66813
commit 17fa802c19
19 changed files with 516 additions and 62 deletions

View file

@ -0,0 +1,10 @@
using System;
using System.Threading.Tasks;
namespace LANCommander.SDK.PowerShell;
public interface IScriptDebugContext
{
Guid SessionId { get; set; }
Task ExecuteAsync(string script);
}