您的位置:首页 > 编程语言 > C#

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

2016-03-21 11:23 633 查看
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

On the menu bar, choose Tools, Options.

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

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.




内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Visual Studio Output