Skip to content

Commit 77c4524

Browse files
committed
Feedback
1 parent 602d33d commit 77c4524

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/lsptoolshost/restore.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function registerRestoreCommands(
1717
) {
1818
context.subscriptions.push(
1919
vscode.commands.registerCommand('dotnet.restore.project', async (_request): Promise<void> => {
20-
return chooseProjectToRestore(languageServer, restoreChannel);
20+
return chooseProjectAndRestore(languageServer, restoreChannel);
2121
})
2222
);
2323
context.subscriptions.push(
@@ -26,7 +26,7 @@ export function registerRestoreCommands(
2626
})
2727
);
2828
}
29-
async function chooseProjectToRestore(
29+
async function chooseProjectAndRestore(
3030
languageServer: RoslynLanguageServer,
3131
restoreChannel: vscode.OutputChannel
3232
): Promise<void> {

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export async function activate(
8282

8383
const csharpChannel = vscode.window.createOutputChannel('C#');
8484
const dotnetTestChannel = vscode.window.createOutputChannel('.NET Test Log');
85-
const dotnetChannel = vscode.window.createOutputChannel('.NET');
85+
const dotnetChannel = vscode.window.createOutputChannel('.NET NuGet Restore');
8686
const csharpchannelObserver = new CsharpChannelObserver(csharpChannel);
8787
const csharpLogObserver = new CsharpLoggerObserver(csharpChannel);
8888
eventStream.subscribe(csharpchannelObserver.post);

0 commit comments

Comments
 (0)