How do I write output to the console from a custom MSBuild task? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:50:44Z http://stackoverflow.com/feeds/question/163537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163537/how-do-i-write-output-to-the-console-from-a-custom-msbuild-task 0 How do I write output to the console from a custom MSBuild task? Luke 2008-10-02T17:24:23Z 2009-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#163558 2 Answer by Kent Boogaart for How do I write output to the console from a custom MSBuild task? Kent Boogaart 2008-10-02T17:28:36Z 2008-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#823680 0 Answer by Si for How do I write output to the console from a custom MSBuild task? Si 2009-05-05T07:03:27Z 2009-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>