dotnet / project-system-tools

Tools for working with the C#/VB/F# project system.
MIT License
272 stars 42 forks source link

Support async tool windows #377

Closed drewnoakes closed 3 years ago

drewnoakes commented 3 years ago

Fixes https://github.com/dotnet/project-system/issues/6768

This allows VS to defer initialising tool windows when VS is loading, which improves start up performance.

Async tool windows were introduced in VS16, so this PR increases the minimum VS version for this extension from 15 to 16.

drewnoakes commented 3 years ago

Async tool window support was added in #392, making this PR obsolete.