vote up 0 vote down star

I need my custom team build task to write some output to the build log file. How do I do this?

The Execute method inherited from the Task baseclass only has a boolean as return parameter.

flag

1 Answer

vote up 1 vote down check

Assuming you did the smart thing and inherited from Microsoft.Build.Utilities.Task, you can simply call Log.Log[Message|Warning|Error] to log with the appropriate level.

Alternately, you can use the BuildEngine you're given (in the ITask.BuildEngine property) to call the Log[X]Event methods.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.