tintoy / msbuild-project-tools-vscode

VS Code extension for MSBuild intellisense (including PackageReference completion).
MIT License
83 stars 17 forks source link

Improve performance of task completions #23

Closed tintoy closed 1 year ago

tintoy commented 6 years ago

This is still slower than I'd like (seems to have a floor of around 200ms, which is way too long).

Consider scanning task assembly metadata in the background and only using the cached results (i.e. no on-demand scanning).

DoctorKrolic commented 1 year ago

Can you check whether this is an issue in dev builds with in-process task scanning work done and close if this is no longer relevant? I cannot do this myself since I don't know how you measured it in the first place

tintoy commented 1 year ago

Sure, will do - I'll take a look sometime this evening.

tintoy commented 1 year ago

Yep, this issue can be closed, now - the latency introduced by spawning another process is gone, so this is no longer an issue.