Skip to content

Commit e0fd885

Browse files
committed
respond to PR review feedback
1 parent 893a8b8 commit e0fd885

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/coreclr-debug/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export function activate(context: vscode.ExtensionContext, reporter: TelemetryRe
7979
return writeCompletionFile();
8080
}).then(function() {
8181
installStage = "completeSuccess";
82+
statusBarMessage.dispose();
8283
vscode.window.setStatusBarMessage('Successfully installed .NET Core Debugger.');
8384
})
8485
.catch(function(error) {

src/coreclr-debug/proxy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ function proxy() {
4343

4444
if (!CoreClrDebugUtil.existsSync(util.installCompleteFilePath())) {
4545
if (CoreClrDebugUtil.existsSync(util.installBeginFilePath())) {
46-
process.stdout.write(serializeProtocolEvent(new ProxyErrorResponse('The .NET Core Debugger has not finished installing. See Status Bar for details.')));
46+
process.stdout.write(serializeProtocolEvent(new ProxyErrorResponse('The .NET Core Debugger is still being downloaded. See the Status Bar for more information.')));
4747
} else {
48-
process.stdout.write(serializeProtocolEvent(new ProxyErrorResponse('Run \'Debugger: Install .NET Core Debugger\' command or open a .NET project directory to download the .NET Core Debugger')));
48+
process.stdout.write(serializeProtocolEvent(new ProxyErrorResponse('Run \'Debug: Download .NET Core Debugger\' in the Command Palette or open a .NET project directory to download the .NET Core Debugger')));
4949
}
5050
}
5151
else

0 commit comments

Comments
 (0)