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(
17
17
) {
18
18
context . subscriptions . push (
19
19
vscode . commands . registerCommand ( 'dotnet.restore.project' , async ( _request ) : Promise < void > => {
20
- return chooseProjectToRestore ( languageServer , restoreChannel ) ;
20
+ return chooseProjectAndRestore ( languageServer , restoreChannel ) ;
21
21
} )
22
22
) ;
23
23
context . subscriptions . push (
@@ -26,7 +26,7 @@ export function registerRestoreCommands(
26
26
} )
27
27
) ;
28
28
}
29
- async function chooseProjectToRestore (
29
+ async function chooseProjectAndRestore (
30
30
languageServer : RoslynLanguageServer ,
31
31
restoreChannel : vscode . OutputChannel
32
32
) : Promise < void > {
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export async function activate(
82
82
83
83
const csharpChannel = vscode . window . createOutputChannel ( 'C#' ) ;
84
84
const dotnetTestChannel = vscode . window . createOutputChannel ( '.NET Test Log' ) ;
85
- const dotnetChannel = vscode . window . createOutputChannel ( '.NET' ) ;
85
+ const dotnetChannel = vscode . window . createOutputChannel ( '.NET NuGet Restore ' ) ;
86
86
const csharpchannelObserver = new CsharpChannelObserver ( csharpChannel ) ;
87
87
const csharpLogObserver = new CsharpLoggerObserver ( csharpChannel ) ;
88
88
eventStream . subscribe ( csharpchannelObserver . post ) ;
You can’t perform that action at this time.
0 commit comments