@@ -13,13 +13,14 @@ import { PowerShellLanguageId } from './utils';
1313import { ConsoleFeature } from './features/Console' ;
1414import { ExamplesFeature } from './features/Examples' ;
1515import { OpenInISEFeature } from './features/OpenInISE' ;
16- import { NewFileOrProjectFeature } from './features/NewFileOrProject' ;
1716import { ExpandAliasFeature } from './features/ExpandAlias' ;
1817import { ShowHelpFeature } from './features/ShowOnlineHelp' ;
18+ import { CodeActionsFeature } from './features/CodeActions' ;
19+ import { DebugSessionFeature } from './features/DebugSession' ;
20+ import { SelectPSSARulesFeature } from './features/SelectPSSARules' ;
1921import { FindModuleFeature } from './features/PowerShellFindModule' ;
22+ import { NewFileOrProjectFeature } from './features/NewFileOrProject' ;
2023import { ExtensionCommandsFeature } from './features/ExtensionCommands' ;
21- import { SelectPSSARulesFeature } from './features/SelectPSSARules' ;
22- import { CodeActionsFeature } from './features/CodeActions' ;
2324
2425// NOTE: We will need to find a better way to deal with the required
2526// PS Editor Services version...
@@ -101,7 +102,8 @@ export function activate(context: vscode.ExtensionContext): void {
101102 new ExtensionCommandsFeature ( ) ,
102103 new SelectPSSARulesFeature ( ) ,
103104 new CodeActionsFeature ( ) ,
104- new NewFileOrProjectFeature ( )
105+ new NewFileOrProjectFeature ( ) ,
106+ new DebugSessionFeature ( )
105107 ] ;
106108
107109 sessionManager =
0 commit comments