You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we refresh the whole view with all project nodes that could cause a lot of re-indexing after performing EF Core actions on large solutions. It's worth refreshing a specific output folder that is used by dialog (migrations folder, models folder, etc.)
The better method for such a logic is the following
VfsUtil.markDirtyAndRefresh(rootNodeToRefresh)
Current logic:
VirtualFileManager.getInstance().refreshWithoutFileWatcher(true) // true for async refresh
The text was updated successfully, but these errors were encountered:
Currently, we refresh the whole view with all project nodes that could cause a lot of re-indexing after performing EF Core actions on large solutions. It's worth refreshing a specific output folder that is used by dialog (migrations folder, models folder, etc.)
The better method for such a logic is the following
VfsUtil.markDirtyAndRefresh(rootNodeToRefresh)
Current logic:
The text was updated successfully, but these errors were encountered: