我正在为 TFS 构建过程工作流编写自定义活动,例如此处的指南。
在我的 C# CodeActivity .Execute() 方法中,我想将我的文本输出到 TFS buildsummary information
作为下面的快照。
我怎样才能做到这一点?
我正在为 TFS 构建过程工作流编写自定义活动,例如此处的指南。
在我的 C# CodeActivity .Execute() 方法中,我想将我的文本输出到 TFS buildsummary information
作为下面的快照。
我怎样才能做到这一点?
您应该使用该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);
}