0
votes

I am using VSTS Build definitions. Once the build is completed then it will show the summary of that particular build. Along with that I would like to show some customized content in the summary.

Is there any way or plug-in to customize the Summary.

2

2 Answers

2
votes

The simple way is using Logging Commands:

##vso[task.uploadsummary]local file path

Upload and attach summary markdown to current timeline record. This summary shall be added to the build/release summary and not available for download with logs.

For example:

  1. Add PowerShell task

Script:

Write-Host "##vso[task.uploadsummary]c:\testsummary.md"
-2
votes

Yes, actually there is. You want to build an extension for VSTS and Microsoft has created a GitHub repo with a number of samples and reading material to get you started.

VSTS Extensions Samples

Develop Extensions for VSTS