/// <summary> /// Logs a list of error messages in the Visual Studio Error List. /// </summary> /// <param name="errors">List of errors to be logged into the Error List.</param> private void ShowErrorsInErrorList(List <string> errorMessages) { foreach (string error in errorMessages) { DTEHelper.AddErrorToErrorListFromOutputPane(error); } }