File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 > {
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments