Skip to content

Commit

Permalink
wrap help text in <para/> tags for better rendering in IDE
Browse files Browse the repository at this point in the history
  • Loading branch information
smoothdeveloper authored and xperiandri committed Feb 6, 2024
1 parent a899b50 commit 558d9a2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/Fake.DotNet.MSBuild/MSBuild.fs
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,17 @@ type MSBuildVerbosity =
| Diagnostic

/// <summary>
/// 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.
///
/// 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>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>
/// <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>
/// <para>
/// <ul>
/// <li>The name of the built project.</li>
/// <li>The target framework (if multi-targeted).</li>
/// <li>The status of that build.</li>
/// <li>The primary output of that build (which is hyperlinked).</li>
/// <li>Any diagnostics generated for that project.</li>
/// </ul>
/// </para>
/// </summary>
/// <remarks>This option is available starting in .NET 8.</remarks>
[<RequireQualifiedAccess>]
Expand Down

0 comments on commit 558d9a2

Please sign in to comment.