microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
dotnet/autoShell/Services/IDebuggerService.cs
15lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | namespace autoShell.Services; |
| 5 | |
| 6 | /// <summary> |
| 7 | /// Abstracts debugger operations for testability. |
| 8 | /// </summary> |
| 9 | internal interface IDebuggerService |
| 10 | { |
| 11 | /// <summary> |
| 12 | /// Launches and attaches a debugger to the process. |
| 13 | /// </summary> |
| 14 | void Launch(); |
| 15 | } |
| 16 | |