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