我正在为TFS构建流程工作流编写自定义活动,例如准则here。
在我的C#CodeActivity .Execute()方法中,我想将我的文本输出到TFS版本的summary information
作为下面的快照。
我该怎么做?
答案 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);
}