Skip to content

Commit bc92d9c

Browse files
committed
Support for terminate request of debug adapter
1 parent b45340c commit bc92d9c

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

Changelog.txt

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changes
99
3.0.4
1010
=====
1111
- Minor changes in exception handling to track down https://github.com/Unity-Technologies/vscode-unity-debug/issues/183
12+
- More graceful debugger stop by supporting `terminate` request
1213

1314
3.0.3
1415
=====

MonoDebug

UnityDebug/UnityDebugSession.cs

+2
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,8 @@ public override void Initialize(Response response, dynamic args)
242242

243243
supportsSetVariable = true,
244244

245+
supportsTerminateRequest = true,
246+
245247
// This debug adapter does not support exception breakpoint filters
246248
exceptionBreakpointFilters = new ExceptionBreakpointsFilter[0]
247249
});

typescript/attach.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ function startSession(context: ExtensionContext, config: any) {
103103
let execCommand = "";
104104
if (process.platform !== 'win32')
105105
execCommand = "mono ";
106+
106107
exec(execCommand + context.extensionPath + "/bin/UnityDebug.exe list", async function (error, stdout, stderr) {
107108
const processes = [];
108109
const lines = stdout.split("\n");
@@ -111,6 +112,7 @@ function startSession(context: ExtensionContext, config: any) {
111112
processes.push(lines[i]);
112113
}
113114
}
115+
114116
if (processes.length == 0) {
115117
window.showErrorMessage("No Unity Process Found.");
116118
} else {
@@ -125,7 +127,6 @@ function startSession(context: ExtensionContext, config: any) {
125127
"__exceptionOptions": exceptions.convertToExceptionOptionsDefault()
126128
}
127129
let response = await debug.startDebugging(undefined, config);
128-
console.log("8");
129130

130131
console.log("debug ended: " + response);
131132
}

0 commit comments

Comments
 (0)