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
add support for /tl:[auto|on|off] msbuild flag (#2768)
* add support for /tl:[auto|on|off] msbuild flag
* adjust link to PR
* wrap help text in <para/> tags for better rendering in IDE
---------
Co-authored-by: Andrii Chebukin <XperiAndri@Outlook.com>
Copy file name to clipboardExpand all lines: src/app/Fake.DotNet.MSBuild/MSBuild.fs
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,26 @@ type MSBuildVerbosity =
33
33
| Detailed
34
34
| Diagnostic
35
35
36
+
/// <summary>
37
+
/// <para>Specifies whether the terminal logger should be used for the build output. The default is auto, which first verifies the environment before enabling terminal logging. The environment check verifies that the terminal is capable of using modern output features and isn't using a redirected standard output before enabling the new logger. on skips the environment check and enables terminal logging. off skips the environment check and uses the default console logger.</para>
38
+
/// <para>The terminal logger shows you the restore phase followed by the build phase. During each phase, the currently building projects appear at the bottom of the terminal. Each project that's building outputs both the MSBuild target currently being built and the amount of time spent on that target. You can search this information to learn more about the build. When a project is finished building, a single "build completed" section is written that captures:</para>
0 commit comments