如何添加自定义TFS构建的“摘要信息”消息?

时间:2014-01-14 07:56:36

标签: c# visual-studio-2012 tfs2012 workflow-activity build-process-template

我正在为TFS构建流程工作流编写自定义活动,例如准则here

在我的C#CodeActivity .Execute()方法中,我想将我的文本输出到TFS版本的summary information作为下面的快照。

我该怎么做?

enter image description here

1 个答案:

答案 0 :(得分:6)

您应该使用CustomSummaryInformation对象来显示摘要消息。这是代码。希望它有所帮助。

 protected override void Execute(CodeActivityContext context)
 {
    var summaryReport = new CustomSummaryInformation()
    {
    Message = "Your message",
    SectionPriority = 0,
    SectionHeader = "Header Name",
    SectionName = "Section Name",
    };
    context.Track(summaryReport);
}