Within the new Build steps, is it possible to have a PowerShell script log some sort of timeline, similar to what the MSBuild task does? This is displayed under the timeline tab when you open a running or completed build in the web interface and select the specific task.
We have a large build that builds about 700 projects, with the MSBuild task you can somewhat see the progress of this, the timing is not correct because of the dependencies that are being build as part of the first project, but thats alright. We have a powershell script that loops over all solutions after the build step and performs other tasks. At this moment only the messages, warnings and errors are logged back to the web interface, but it would be nice if we could build output the list we loop through and see the progress of that list. Possibly with the green check-marks for projects that are done.
Is it possible to make something like that ?
let me know if i need to further clarify myself.