File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ import { RazorFormatNewFileHandler } from './formatNewFile/razorFormatNewFileHan
50
50
import { InlayHintHandler } from './inlayHint/inlayHintHandler' ;
51
51
import { InlayHintResolveHandler } from './inlayHint/inlayHintResolveHandler' ;
52
52
import { getComponentPaths } from '../../lsptoolshost/builtInComponents' ;
53
+ import { BlazorDebugConfigurationProvider } from './blazorDebug/blazorDebugConfigurationProvider' ;
53
54
54
55
// We specifically need to take a reference to a particular instance of the vscode namespace,
55
56
// otherwise providers attempt to operate on the null extension.
@@ -295,6 +296,9 @@ export async function activate(
295
296
localRegistrations . length = 0 ;
296
297
} ) ;
297
298
299
+ const provider = new BlazorDebugConfigurationProvider ( logger , vscodeType ) ;
300
+ context . subscriptions . push ( vscodeType . debug . registerDebugConfigurationProvider ( 'blazorwasm' , provider ) ) ;
301
+
298
302
languageServerClient . onStarted ( async ( ) => {
299
303
await documentManager . initialize ( ) ;
300
304
} ) ;
You can’t perform that action at this time.
0 commit comments