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?
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?
You should to use the
CustomSummaryInformation
object to display the summary message. Here is the code. Hope it helps.