4

我正在为 TFS 构建过程工作流编写自定义活动,例如此处的指南。

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

我怎样才能做到这一点?

在此处输入图像描述

4

1 回答 1

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);
}
于 2014-01-14T08:03:50.310 回答