Build Progress Start - aegoroff/msbuildteamcitytasks GitHub Wiki

Writes progress start message into TeamCity log

Introduction

You can use special progress messages to mark long-running parts in a build script. These messages will be shown on the projects dashboard for corresponding build and on the build results page.

Details

Writes progress start message into TeamCity log

    <BuildProgressStart Message="Message text" />

Writes progress start message into TeamCity log full example (with all optional attributes)

    <BuildProgressStart
        IsAddTimestamp="true"
        FlowId="1"
        Message="Message text"
    />