Example #1
0
        private void GatherFolderConfiguration()
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            //Add file watcher for configuration change notification on CMake projects
            SetConfiguration(FolderConfigurationUtils.GetActiveConfigurationName(RootPath));
            FileWatcher.Watch(FolderConfigurationUtils.GetActiveConfigurationFileName(RootPath));
        }
Example #2
0
 private void OnFolderActiveConfigurationChanged()
 {
     ThreadHelper.ThrowIfNotOnUIThread();
     SetConfiguration(FolderConfigurationUtils.GetActiveConfigurationName(RootPath));
 }