/// <summary> /// Fires the <see cref="ProjectRenamed" /> event. /// </summary> /// <param name="e">Indicates which project was renamed, and the old and the new name of the project.</param> protected virtual void OnRenameProject(ProjectRenameEventArgs e) { if (ProjectRenamed != null) { ProjectRenamed(this, e); } OnProjectChanged(); }