Skip to content

Commit 893a8b8

Browse files
committed
Rename command to download the debugger
1 parent 473d88e commit 893a8b8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"onCommand:o.execute-last-command",
5252
"onCommand:dotnet.restore",
5353
"onCommand:csharp.addTasksJson",
54-
"onCommand:csharp.installDebugger",
54+
"onCommand:csharp.downloadDebugger",
5555
"workspaceContains:project.json"
5656
],
5757
"contributes": {
@@ -109,9 +109,9 @@
109109
"category": "dotnet"
110110
},
111111
{
112-
"command": "csharp.installDebugger",
113-
"title": "Install .NET Core Debugger",
114-
"category": "Debugger"
112+
"command": "charp.downloadDebugger",
113+
"title": "Download .NET Core Debugger",
114+
"category": "Debug"
115115
}
116116
],
117117
"keybindings": [

src/omnisharpMain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export function activate(context: vscode.ExtensionContext): any {
9393

9494
// register empty handler for csharp.installDebugger
9595
// running the command activates the extension, which is all we need for installation to kickoff
96-
disposables.push(vscode.commands.registerCommand('csharp.installDebugger', () => { }));
96+
disposables.push(vscode.commands.registerCommand('csharp.downloadDebugger', () => { }));
9797

9898
// install coreclr-debug
9999
coreclrdebug.activate(context, reporter);

0 commit comments

Comments
 (0)