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
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,9 +116,21 @@ 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. You will want this if your console app takes console input (ex: Console.ReadLine). This can be enabled with:
Copy file name to clipboardExpand all lines: package.json
+110-3Lines changed: 110 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "csharp",
3
3
"publisher": "ms-vscode",
4
-
"version": "1.0.12",
4
+
"version": "1.1.4",
5
5
"description": "C# for Visual Studio Code (powered by OmniSharp).",
6
6
"displayName": "C#",
7
7
"author": "Microsoft Corporation",
@@ -22,7 +22,7 @@
22
22
"postinstall": "tsc"
23
23
},
24
24
"dependencies": {
25
-
"decompress": "^3.0.0",
25
+
"decompress": "^4.0.0",
26
26
"del": "^2.0.2",
27
27
"fs-extra-promise": "^0.3.1",
28
28
"http-proxy-agent": "^1.0.0",
@@ -263,6 +263,17 @@
263
263
}
264
264
}
265
265
},
266
+
"env": {
267
+
"type": "object",
268
+
"additionalProperties": { "type": "string" },
269
+
"description": "Environment variables passed to the program.",
270
+
"default": { }
271
+
},
272
+
"externalConsole": {
273
+
"type": "boolean",
274
+
"description": "If 'true' the debugger should launch the target application into a new external console.",
275
+
"default": false
276
+
},
266
277
"sourceFileMap": {
267
278
"type": "object",
268
279
"description": "Optional source file mappings passed to the debug engine. Example: '{ \"C:\\foo\":\"/home/user/foo\" }'",
@@ -282,6 +293,98 @@
282
293
"type": "string"
283
294
},
284
295
"default": []
296
+
},
297
+
"pipeTransport": {
298
+
"type": "object",
299
+
"description": "When present, this tells the debugger to connect to a remote computer using another executable as a pipe that will relay standard input/output between VS Code and the .NET Core debugger backend executable (clrdbg).",
300
+
"default": {
301
+
"pipeProgram": "enter the fully qualified path for the pipe program name, for example 'c:\\tools\\plink.exe'",
302
+
"pipeArgs": []
303
+
},
304
+
"properties" : {
305
+
"pipeProgram": {
306
+
"type": "string",
307
+
"description": "The fully qualified pipe command to execute.",
308
+
"default": "enter the fully qualified path for the pipe program name, for example 'c:\\tools\\plink.exe'"
309
+
},
310
+
"pipeArgs": {
311
+
"type": "array",
312
+
"description": "Command line arguments passed to the pipe program.",
0 commit comments