在visual studio的输出窗口中调整项目构建报告

时间:2017-08-29 09:00:48

标签: c++ visual-studio

目前在构建之后,我在输出窗口中得到以下内容:

========== Build: 1 succeeded, 1 failed, 35 up-to-date, 1 skipped ==========

Projects build report:
  Status    | Project [Config|platform]
 -----------|---------------------------------------------------------------------------------------------------
  Succeeded | ZERO_CHECK.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\bx.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\squish.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\pvrtc.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\glcpp.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\mesa.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\iqa.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\edtaa3.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\etc1.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\etc2.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\nvtt.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\fcpp.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\glsl-optimizer.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\glslang.vcxproj [Debug|x64]
  Succeeded | third_party\dynamix.vcxproj [Debug|x64]
  Succeeded | third_party\tinygizmo.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\bimg.vcxproj [Debug|x64]
  Succeeded | src\doctest_runner.vcxproj [Debug|x64]
  Succeeded | third_party\file_watcher.vcxproj [Debug|x64]
  Succeeded | third_party\nativefiledialog.vcxproj [Debug|x64]
  Succeeded | third_party\glew.vcxproj [Debug|x64]
  Succeeded | third_party\glfw\src\glfw.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\ib-compress.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\shaderc.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\bgfx.vcxproj [Debug|x64]
  Succeeded | third_party\imgui.vcxproj [Debug|x64]
  Succeeded | third_party\ppk_assert.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\forsyth-too.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\texturec.vcxproj [Debug|x64]
  Succeeded | third_party\glm.vcxproj [Debug|x64]
  Succeeded | third_party\bgfx.cmake\geometryc.vcxproj [Debug|x64]
  Succeeded | parser_modified.vcxproj [Debug|x64]
  Succeeded | src\registry.vcxproj [Debug|x64]
  Succeeded | src\game.vcxproj [Debug|x64]
  Succeeded | src\camera.vcxproj [Debug|x64]
  Failed    | src\plugin.vcxproj [Debug|x64]
  Succeeded | ALL_BUILD.vcxproj [Debug|x64]

有没有办法在此粘贴的第一行之后禁用Projects build report或至少调整它以仅显示失败的项目?

使用Visual Studio 2017

1 个答案:

答案 0 :(得分:0)

事实证明这是VSColorOutput扩展中的一个选项 - 我可以拥有或不拥有Projects build report - 但无法自定义它。

相关问题