《CLR Via C#》改变Visual Studio中Output Window输出内容的详细程度

本文讲解"《CLR Via C#》改变Visual Studio中Output Window输出内容的详细程度",用于解决相关问题。

After you build a project in the Visual Studio IDE, you can view information about that build in the Output window.



To change the amount of information included in the build log

  1. On the menu bar, choose Tools, Options.

  2. On the Projects and Solutions page, choose the Build and Run page.

  3. In the MSBuild project build output verbosity list, choose one of the following values, and then choose the OK button.

    Verbosity level

    Description

    Quiet

    Displays a summary of the build only.

    Minimal

    Displays a summary of the build and errors, warnings, and messages that are categorized as highly important.

    Normal

    Displays a summary of the build; errors, warnings, and messages that are categorized as highly important; and the main steps of the build.You'll use this level of detail most frequently.

    Detailed

    Displays a summary of the build; errors, warnings, and messages that are categorized as highly important; all of the steps of the build; and messages that are categorized as of normal importance.

    Diagnostic

    Displays all data that's available for the build.You can use this level of detail to help debug issues with custom build scripts and other build issues.


《CLR Via C#》改变Visual Studio中Output Window输出内容的详细程度

《CLR Via C#》改变Visual Studio中Output Window输出内容的详细程度




关于 "《CLR Via C#》改变Visual Studio中Output Window输出内容的详细程度" 就介绍到此。希望多多支持编程宝库

本文讲解"《CLR Via C#》使用CSC.exe进行单文件的编译",用于解决相关问题。1、新建一个Program.cs文件,并写入代码在目录E:\LiuSen\VS\test下 ...