You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: debugger.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,9 +116,23 @@ You can optionally configure a file by file mapping by providing map following t
116
116
117
117
"sourceFileMap": {
118
118
"C:\foo":"/home/me/foo"
119
-
}
119
+
}
120
120
121
121
#####Symbol Path
122
122
You can optionally provide paths to symbols following this schema:
123
123
124
124
"symbolPath":"[ \"/Volumes/symbols\"]"
125
+
126
+
#####Environment variables
127
+
Environment variables may be passed to your program using this schema:
128
+
129
+
"env": {
130
+
"myVariableName":"theValueGoesHere"
131
+
}
132
+
133
+
#####External console (terminal) window
134
+
The target process can optionally launch into a seperate console window. This is enabled by default for non-ASP.NET applications. But it can be explicitly set with:
135
+
136
+
"externalConsole": true
137
+
138
+
If your console app doesn't take console input (ex: all input comes from the command line), you may want to turn this off.
0 commit comments