You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.Build.Utilities.ProjectCreation/BuildEventArgsCollection.cs
+12-61Lines changed: 12 additions & 61 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
//
3
3
// Licensed under the MIT license.
4
4
5
+
usingMicrosoft.Build.Evaluation;
5
6
usingMicrosoft.Build.Framework;
6
7
usingMicrosoft.Build.Logging;
7
8
usingSystem;
@@ -108,8 +109,16 @@ public virtual void Dispose()
108
109
/// Gets the current build output in the format of a console log.
109
110
/// </summary>
110
111
/// <param name="verbosity">The logger verbosity to use.</param>
112
+
/// <param name="showSummary">Optional parameter indicating whether or not to show an error and warning summary at the end.</param>
113
+
/// <param name="performanceSummary">Optional parameter indicating whether or not to show time spent in tasks, targets and projects.</param>
114
+
/// <param name="errorsOnly">Optional parameter indicating whether or not to show only errors.</param>
115
+
/// <param name="warningsOnly">Optional parameter indicating whether or not to show only warnings.</param>
116
+
/// <param name="showItemAndPropertyList">Optional parameter indicating whether or not to show a list of items and properties at the start of each project build.</param>
117
+
/// <param name="showCommandLine">Optional parameter indicating whether or not to show <see cref="TaskCommandLineEventArgs" /> messages.</param>
118
+
/// <param name="showTimestamp">Optional parameter indicating whether or not to show the timestamp as a prefix to any message.</param>
119
+
/// <param name="showEventId">Optional parameter indicating whether or not to show eventId for started events, finished events, and messages.</param>
111
120
/// <returns>The build output in the format of a console log.</returns>
0 commit comments