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: package.json
+60-2Lines changed: 60 additions & 2 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.1.5",
4
+
"version": "1.1.6",
5
5
"description": "C# for Visual Studio Code (powered by OmniSharp).",
6
6
"displayName": "C#",
7
7
"author": "Microsoft Corporation",
@@ -294,14 +294,25 @@
294
294
},
295
295
"default": []
296
296
},
297
+
"requireExactSource": {
298
+
"type": "boolean",
299
+
"description": "Optional flag to require current source code to match the pdb.",
300
+
"default": true
301
+
},
297
302
"pipeTransport": {
298
303
"type": "object",
299
304
"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
305
"default": {
306
+
"pipeCwd": "${workspaceRoot}",
301
307
"pipeProgram": "enter the fully qualified path for the pipe program name, for example 'c:\\tools\\plink.exe'",
302
308
"pipeArgs": []
303
309
},
304
310
"properties" : {
311
+
"pipeCwd": {
312
+
"type": "string",
313
+
"description": "The fully qualified path to the working directory for the pipe program.",
314
+
"default": "${workspaceRoot}"
315
+
},
305
316
"pipeProgram": {
306
317
"type": "string",
307
318
"description": "The fully qualified pipe command to execute.",
@@ -315,14 +326,26 @@
315
326
},
316
327
"default": []
317
328
},
329
+
"pipeEnv": {
330
+
"type": "object",
331
+
"additionalProperties": { "type": "string" },
332
+
"description": "Environment variables passed to the pipe program.",
0 commit comments