在TFS版本管理中突出显示批处理脚本任务错误

时间:2017-07-13 15:57:38

标签: tfs

部署时,日志会列出错误和警告突出显示模式的空白:

Error message highlight pattern: 
Warning message highlight pattern: 

我在哪里可以为这些设置值,以便我可以突出显示我的消息?

1 个答案:

答案 0 :(得分:1)

目前在TFS中没有此类值可以突出显示您的消息。

但是,您应该能够使用logging commands从脚本中返回警告和错误。例如:

Write-Host "##vso[task.logissue type=warning;]Test warning"
Write-Host "##vso[task.logissue type=error;]Test error"

会返回这样的内容:

enter image description here

另请看一下这个类似的问题:Is it possible to configure the 'message highlight pattern' for the TFS2015.2 build definition command line step?