Forge
csharpdeeb25a2
1namespace CascadeIDE.Features.IdeMcp.Application;
2
3/// <summary>
4/// Инструкции для UI после <see cref="CascadeIDE.Services.DebugSessionSnapshot"/> (без I/O: проверку файлов делает VM).
5/// </summary>
6public readonly record struct IdeMcpDapSnapshotUiPlan(
7 bool MfdPrimedForCurrentStopNext,
8 bool ActivateInstrumentationDockAndDebugStack,
9 string? DebugPositionFile,
10 int DebugPositionLine,
11 bool ShouldAttemptOpenStoppedSource,
12 string? StoppedSourcePathForOpenAttempt,
13 int DebugStackSelectedIndex);
14
View only · write via MCP/CIDE