microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-shell-and-cli-windows-job

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