@@ -13,13 +13,14 @@ import { PowerShellLanguageId } from './utils';
13
13
import { ConsoleFeature } from './features/Console' ;
14
14
import { ExamplesFeature } from './features/Examples' ;
15
15
import { OpenInISEFeature } from './features/OpenInISE' ;
16
- import { NewFileOrProjectFeature } from './features/NewFileOrProject' ;
17
16
import { ExpandAliasFeature } from './features/ExpandAlias' ;
18
17
import { ShowHelpFeature } from './features/ShowOnlineHelp' ;
18
+ import { CodeActionsFeature } from './features/CodeActions' ;
19
+ import { DebugSessionFeature } from './features/DebugSession' ;
20
+ import { SelectPSSARulesFeature } from './features/SelectPSSARules' ;
19
21
import { FindModuleFeature } from './features/PowerShellFindModule' ;
22
+ import { NewFileOrProjectFeature } from './features/NewFileOrProject' ;
20
23
import { ExtensionCommandsFeature } from './features/ExtensionCommands' ;
21
- import { SelectPSSARulesFeature } from './features/SelectPSSARules' ;
22
- import { CodeActionsFeature } from './features/CodeActions' ;
23
24
24
25
// NOTE: We will need to find a better way to deal with the required
25
26
// PS Editor Services version...
@@ -101,7 +102,8 @@ export function activate(context: vscode.ExtensionContext): void {
101
102
new ExtensionCommandsFeature ( ) ,
102
103
new SelectPSSARulesFeature ( ) ,
103
104
new CodeActionsFeature ( ) ,
104
- new NewFileOrProjectFeature ( )
105
+ new NewFileOrProjectFeature ( ) ,
106
+ new DebugSessionFeature ( )
105
107
] ;
106
108
107
109
sessionManager =
0 commit comments