Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/VisualStudio/Core/Def/LanguageService/AbstractPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ internal IComponentModel ComponentModel
/// This method is called upon package creation and is the mechanism by which roslyn packages calculate and
/// process all package initialization work. Do not override this sealed method, instead override RegisterOnAfterPackageLoadedAsyncWork
/// to indicate the work your package needs upon initialization.
protected sealed override Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
/// Not sealed as TypeScriptPackage has IVT and derives from this class and implements this method.
protected override Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
=> RegisterAndProcessTasksAsync(RegisterInitializeAsyncWork, cancellationToken);

/// This method is called after package load and is the mechanism by which roslyn packages calculate and
Expand Down
Loading