csharpdeeb25a2 | 1 | #nullable enable |
| 2 | |
| 3 | namespace CascadeIDE.Cockpit.ComputingUnits.Launch; |
| 4 | |
| 5 | /// <summary>Резолв целевой DLL, аргументов и среды из launch profile (F5, MCP) перед DAP.</summary> |
| 6 | public readonly record struct DebugLaunchResolution( |
| 7 | string TargetDllPath, |
| 8 | IReadOnlyList<string>? ProgramArgs, |
| 9 | IReadOnlyDictionary<string, string>? Environment, |
| 10 | string? WorkingDirectoryRelativeToSolution, |
| 11 | bool OpenLaunchBrowser, |
| 12 | string? LaunchUrl); |
| 13 | |
View only · write via MCP/CIDE