microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
45331a57cd2b590bdf0ca39e3379689d69eb9e91

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

dotnet/autoShell/Services/IDebuggerService.cs

15lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4namespace autoShell.Services;
5
6/// <summary>
7/// Abstracts debugger operations for testability.
8/// </summary>
9internal interface IDebuggerService
10{
11 /// <summary>
12 /// Launches and attaches a debugger to the process.
13 /// </summary>
14 void Launch();
15}
16