File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/VisualStudio/Core/Def/LanguageService Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ internal IComponentModel ComponentModel
2727 /// This method is called upon package creation and is the mechanism by which roslyn packages calculate and
2828 /// process all package initialization work. Do not override this sealed method, instead override RegisterOnAfterPackageLoadedAsyncWork
2929 /// to indicate the work your package needs upon initialization.
30- protected sealed override Task InitializeAsync ( CancellationToken cancellationToken , IProgress < ServiceProgressData > progress )
30+ /// Not sealed as TypeScriptPackage has IVT and derives from this class and implements this method.
31+ protected override Task InitializeAsync ( CancellationToken cancellationToken , IProgress < ServiceProgressData > progress )
3132 => RegisterAndProcessTasksAsync ( RegisterInitializeAsyncWork , cancellationToken ) ;
3233
3334 /// This method is called after package load and is the mechanism by which roslyn packages calculate and
You can’t perform that action at this time.
0 commit comments