Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 49 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,16 @@
"type": "object",
"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).",
"default": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example 'c:\\tools\\plink.exe'",
"pipeArgs": []
},
"properties" : {
"pipeCwd": {
"type": "string",
"description": "The fully qualified path to the working directory for the pipe program.",
"default": "${workspaceRoot}"
},
"pipeProgram": {
"type": "string",
"description": "The fully qualified pipe command to execute.",
Expand All @@ -315,14 +321,26 @@
},
"default": []
},
"pipeEnv": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "Environment variables passed to the pipe program.",
"default": { }
},
"windows": {
"type": "object",
"description": "Windows-specific pipe launch configuration options",
"default": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example 'c:\\tools\\plink.exe'",
"pipeArgs": []
},
"properties": {
"pipeCwd": {
"type": "string",
"description": "The fully qualified path to the working directory for the pipe program.",
"default": "${workspaceRoot}"
},
"pipeProgram": {
"type": "string",
"description": "The fully qualified pipe command to execute.",
Expand All @@ -335,17 +353,29 @@
"type": "string"
},
"default": []
},
"pipeEnv": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "Environment variables passed to the pipe program.",
"default": { }
}
}
},
"osx": {
"type": "object",
"description": "OSX-specific pipe launch configuration options",
"default": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
"pipeArgs": []
},
"properties": {
"pipeCwd": {
"type": "string",
"description": "The fully qualified path to the working directory for the pipe program.",
"default": "${workspaceRoot}"
},
"pipeProgram": {
"type": "string",
"description": "The fully qualified pipe command to execute.",
Expand All @@ -358,17 +388,29 @@
"type": "string"
},
"default": []
}
},
"pipeEnv": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "Environment variables passed to the pipe program.",
"default": { }
}
}
},
"linux": {
"type": "object",
"description": "Linux-specific pipe launch configuration options",
"default": {
"pipeCwd": "${workspaceRoot}",
"pipeProgram": "enter the fully qualified path for the pipe program name, for example '/usr/bin/ssh'",
"pipeArgs": []
},
"properties": {
"pipeCwd": {
"type": "string",
"description": "The fully qualified path to the working directory for the pipe program.",
"default": "${workspaceRoot}"
},
"pipeProgram": {
"type": "string",
"description": "The fully qualified pipe command to execute.",
Expand All @@ -381,6 +423,12 @@
"type": "string"
},
"default": []
},
"pipeEnv": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "Environment variables passed to the pipe program.",
"default": { }
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/coreclr-debug/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ function createProjectJson(targetRuntime: string): any
},
dependencies: {
"Microsoft.VisualStudio.clrdbg": "14.0.25406-preview-3044032",
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30606-preview-1",
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20527-preview-1",
"Microsoft.VisualStudio.clrdbg.MIEngine": "14.0.30610-preview-1",
"Microsoft.VisualStudio.OpenDebugAD7": "1.0.20610-preview-3",
"NETStandard.Library": "1.5.0-rc2-24027",
"Newtonsoft.Json": "7.0.1",
"Microsoft.VisualStudio.Debugger.Interop.Portable": "1.0.1",
Expand Down