7 references to ConsoleOutput
Microsoft.Build (7)
BackEnd\Client\MSBuildClient.cs (2)
591case ConsoleOutput.Standard: 594case ConsoleOutput.Error:
BackEnd\Node\OutOfProcServerNode.cs (2)
412using (RedirectConsoleWriter outWriter = new(text => SendPacket(new ServerNodeConsoleWrite(text, ConsoleOutput.Standard)))) 413using (RedirectConsoleWriter errWriter = new(text => SendPacket(new ServerNodeConsoleWrite(text, ConsoleOutput.Error))))
BackEnd\Node\ServerNodeConsoleWrite.cs (3)
9private ConsoleOutput _outputType = default!; 21public ConsoleOutput OutputType => _outputType; 28public ServerNodeConsoleWrite(string text, ConsoleOutput outputType)