I'm writing a customized activity for TFS build process workflow, e.g. guideline here.

In my C# CodeActivity .Execute() method, I want to output my text to the TFS build 's summary information as the snapshot below.

How can I do that?

enter image description here

有帮助吗?

解决方案

You should to use the CustomSummaryInformation object to display the summary message. Here is the code. Hope it helps.

 protected override void Execute(CodeActivityContext context)
 {
    var summaryReport = new CustomSummaryInformation()
    {
    Message = "Your message",
    SectionPriority = 0,
    SectionHeader = "Header Name",
    SectionName = "Section Name",
    };
    context.Track(summaryReport);
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top