TeamCity.MSBuild.Logger/ILogWriter.cs (10 lines of code) (raw):
namespace TeamCity.MSBuild.Logger
{
using JetBrains.Annotations;
internal interface ILogWriter
{
void Write([CanBeNull] string message, [CanBeNull] IConsole console = null);
void SetColor(Color color);
void ResetColor();
}
}