How do I write output to the console from a custom MSBuild task? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T21:50:44Zhttp://stackoverflow.com/feeds/question/163537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163537/how-do-i-write-output-to-the-console-from-a-custom-msbuild-task0How do I write output to the console from a custom MSBuild task?Luke2008-10-02T17:24:23Z2009-05-05T07:03:27Z
<p>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.</p>
http://stackoverflow.com/questions/163537/how-do-i-write-output-to-the-console-from-a-custom-msbuild-task/163558#1635582Answer by Kent Boogaart for How do I write output to the console from a custom MSBuild task?Kent Boogaart2008-10-02T17:28:36Z2008-10-02T17:28:36Z<p>The base <a href="http://msdn.microsoft.com/en-us/library/microsoft.build.utilities.task.aspx" rel="nofollow">Task</a> class has a <code>Log</code> property you can use:</p>
<pre><code>Log.LogMessage("My message");
</code></pre>
http://stackoverflow.com/questions/163537/how-do-i-write-output-to-the-console-from-a-custom-msbuild-task/823680#8236800Answer by Si for How do I write output to the console from a custom MSBuild task?Si2009-05-05T07:03:27Z2009-05-05T07:03:27Z<p>For unit testing purposes, I wrap the logger around a helper class</p>
<pre><code>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.
}
}
</code></pre>
<p>Nowadays I'd probably convert that into an extension method for convenience.</p>