File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 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
5050import { InlayHintHandler } from './inlayHint/inlayHintHandler' ;
5151import { InlayHintResolveHandler } from './inlayHint/inlayHintResolveHandler' ;
5252import { getComponentPaths } from '../../lsptoolshost/builtInComponents' ;
53+ import { BlazorDebugConfigurationProvider } from './blazorDebug/blazorDebugConfigurationProvider' ;
5354
5455// We specifically need to take a reference to a particular instance of the vscode namespace,
5556// otherwise providers attempt to operate on the null extension.
@@ -295,6 +296,9 @@ export async function activate(
295296 localRegistrations . length = 0 ;
296297 } ) ;
297298
299+ const provider = new BlazorDebugConfigurationProvider ( logger , vscodeType ) ;
300+ context . subscriptions . push ( vscodeType . debug . registerDebugConfigurationProvider ( 'blazorwasm' , provider ) ) ;
301+
298302 languageServerClient . onStarted ( async ( ) => {
299303 await documentManager . initialize ( ) ;
300304 } ) ;
You can’t perform that action at this time.
0 commit comments