Skip to content

Commit 2a7aabb

Browse files
committed
Merge pull request #442 from mousetraps/i63
Fix #63 IntelliSense disappears after closing VS when there is an
2 parents 91df7ca + 217827e commit 2a7aabb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Nodejs/Product/Nodejs/Intellisense/VsProjectAnalyzer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,8 @@ public void ReloadComplete() {
682682
}
683683

684684
foreach (var item in _projectFiles) {
685-
if (!File.Exists(item.Value.Entry.FilePath) || (!item.Value.Reloaded && !item.Value.Entry.IsBuiltin)) {
685+
if ((!File.Exists(item.Value.Entry.FilePath) || !item.Value.Reloaded)
686+
&& !item.Value.Entry.IsBuiltin) {
686687
UnloadFile(item.Value.Entry);
687688
}
688689
}

0 commit comments

Comments
 (0)