vote up 0 vote down star

I'm trying to debug an MSBuild task, and I know there is some way to write to the MSBuild log from within a custom task but I forget how.

flag

2 Answers

vote up 2 vote down check

The base Task class has a Log property you can use:

Log.LogMessage("My message");
link|flag
vote up 0 vote down

For unit testing purposes, I wrap the logger around a helper class

public static void Log(ITask task, string message, MessageImportance importance)
{
	try
	{
		BuildMessageEventArgs args = new BuildMessageEventArgs(message, string.Empty, 
			task.ToString(), importance);
		task.BuildEngine.LogMessageEvent(args);
	}
	catch (NullReferenceException)
	{
		// Don't throw as task and BuildEngine will be null in unit test.
	}
}

Nowadays I'd probably convert that into an extension method for convenience.

link|flag

Your Answer

Get an OpenID
or

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