Skip to content

Commit 8424810

Browse files
Update "Installing C# dependencies" message (#1885)
When we start downloading our dependencies we would print a message about updating our dependencies which makes it sound like we already have version X installed and we are trying to update to Y. This changes the message to "Installing".
1 parent fcd7636 commit 8424810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CSharpExtDownloader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class CSharpExtDownloader
2323
}
2424

2525
public installRuntimeDependencies(): Promise<boolean> {
26-
this.logger.append('Updating C# dependencies...');
26+
this.logger.append('Installing C# dependencies...');
2727
this.channel.show();
2828

2929
let statusItem = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Right);

0 commit comments

Comments
 (0)