/// <summary> /// Kills the process currently running for project. /// </summary> /// <param name="name">The name.</param> /// <remarks></remarks> public static void KillProcessCurrentlyRunningForProject(string name) { ProcessMonitor monitor = ProcessMonitor.ForProject(name); if (monitor == null) { Log.Debug(string.Format(System.Globalization.CultureInfo.CurrentCulture, "Request to abort process currently running for project {0}, but no process is currently running.", name)); } else { monitor.KillProcess(); } }