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
[SharedCache] Allow project databases to be stored in a separate folder
However the primary file will need to be selected each time you open, for that to be resolved we need to use project file UUID's or the cache entry UUID's themselves to traverse all project files
if (!IsSameFolderForFile(primaryProjectFile, currentProjectFile))
822
+
{
823
+
// TODO: Remove this restriction using stored cache UUID's and a fast project file search.
824
+
m_logger->LogWarn("Because the primary file is in a different project folder you will need to select it on every open, consider moving the database file into the same folder.");
825
+
}
826
+
814
827
// OK, we have the primary shared cache file, now let's add the entries.
815
828
auto sharedCacheBuilder = SharedCacheBuilder(this);
0 commit comments