private void ProjectItemsEvents_ItemAdded(ProjectItem projectItem) { if (!dependenciesIndexed) { IndexDependencies(); dependenciesIndexed = true; } try { EngineManager.Enqueue(projectItem); } catch (Exception e) { this.OutputWindowWriteText(e.ToString()); } }