TFS2010 - Logging inside custom build activity

元气小坏坏 提交于 2019-12-02 07:02:54

You could try setting the following attribute on the Build Process Template XAML (cannot be done via the designer) to suppress the messages:

mtbwt:BuildTrackingParticipant.Importance="None"

example from my template:

<InvokeMethod DisplayName="Delete File" mtbwt:BuildTrackingParticipant.Importance="None" ... />
stavn

mtbwt:BuildTrackingParticipant.Importance="Low"/"None" only controls the call (I guess). Instead use mtbwt:BuildTrackingParticipant.TrackingOption="None", which seems to get completely rid of all tracking messages in the call.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!