Implementation of script debugger component with RPC via SignalR
This commit is contained in:
parent
f242f66813
commit
17fa802c19
19 changed files with 516 additions and 62 deletions
10
LANCommander.SDK/PowerShell/IScriptDebugContext.cs
Normal file
10
LANCommander.SDK/PowerShell/IScriptDebugContext.cs
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue