File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,9 @@ import { FileDownloader } from './net/fileDownloader';
63
63
import { HttpClient } from './net/httpClient' ;
64
64
import { PersistentStateFactory } from './persistentState' ;
65
65
import { IS_WINDOWS } from './platform/constants' ;
66
+ import { FileSystemPathUtils } from './platform/fs-paths' ;
66
67
import { PathUtils } from './platform/pathUtils' ;
68
+ import { IFileSystemPathUtils } from './platform/types' ;
67
69
import { CurrentProcess } from './process/currentProcess' ;
68
70
import { ProcessLogger } from './process/logger' ;
69
71
import { IProcessLogger } from './process/types' ;
@@ -105,6 +107,7 @@ export function registerTypes(serviceManager: IServiceManager): void {
105
107
serviceManager . addBinding ( IPersistentStateFactory , IExtensionSingleActivationService ) ;
106
108
serviceManager . addSingleton < ITerminalServiceFactory > ( ITerminalServiceFactory , TerminalServiceFactory ) ;
107
109
serviceManager . addSingleton < IPathUtils > ( IPathUtils , PathUtils ) ;
110
+ serviceManager . addSingleton < IFileSystemPathUtils > ( IFileSystemPathUtils , FileSystemPathUtils ) ;
108
111
serviceManager . addSingleton < IApplicationShell > ( IApplicationShell , ApplicationShell ) ;
109
112
serviceManager . addSingleton < IClipboard > ( IClipboard , ClipboardService ) ;
110
113
serviceManager . addSingleton < ICurrentProcess > ( ICurrentProcess , CurrentProcess ) ;
You can’t perform that action at this time.
0 commit comments