Message Task

Logs a message during a build.

Parameters

The folowing table describes the parameters of the Message task.

Parameter

Description

Importance

Optional String parameter.

Specifies the importance of the message. This parameter can have a value of high, normal or low. The default value is normal.

Text

Optional String parameter.

The error text to log.

Remarks

The Message task allows MSBuild projects to issue messages to loggers at different steps in the build process.

If the Condition parameter evaluates to true, the value of the Text parameter will be logged and the build will continue to execute. If a Condition parameter does not exist, the message text is logged. For more information on logging, see Overview of Logging in MSBuild.

Example

The following code example logs messages to all registered loggers.

<Project xmlns="https://schemas.microsoft.com/developer/msbuild/2003">
    <Target Name="DisplayMessages">
        <Message Text="Project File Name = $(MSBuildProjectFile)" />
        <Message Text="Project Extension = $(MSBuildProjectExtension)" />
    </Target>
    ...
</Project>

See Also

Concepts

Overview of Logging in MSBuild

Other Resources

MSBuild Task Reference