3 instantiations of OutputLine
Microsoft.DotNet.HotReload.Watch (3)
Build\BuildReporter.cs (1)
100
=> _messages.Add(new
OutputLine
(message.TrimEnd('\r', '\n'), IsError: false));
Process\ProcessRunner.cs (2)
189
onOutput(new
OutputLine
(args.Data, IsError: false));
204
onOutput(new
OutputLine
(args.Data, IsError: true));
15 references to OutputLine
dotnet-watch (1)
Watch\MsBuildFileSetFactory.cs (1)
50
var capturedOutput = new List<
OutputLine
>();
dotnet-watch.Tests (4)
TestUtilities\TestProcessOutputReporter.cs (2)
8
public readonly List<
OutputLine
> Output = [];
13
public void ReportOutput(
OutputLine
line)
TestUtilities\TestReporter.cs (2)
20
public event Action<
OutputLine
>? OnProcessOutput;
22
void IProcessOutputReporter.ReportOutput(
OutputLine
line)
Microsoft.DotNet.HotReload.Watch (10)
Aspire\AspireServiceFactory.cs (2)
112
var outputChannel = Channel.CreateUnbounded<
OutputLine
>(s_outputChannelOptions);
170
await foreach (
var
line in outputChannel.Reader.ReadAllAsync(cancellationToken))
Build\BuildReporter.cs (2)
85
private readonly List<
OutputLine
> _messages = [];
93
public IReadOnlyList<
OutputLine
> Messages
HotReload\HotReloadDotNetWatcher.cs (1)
859
List<
OutputLine
>? capturedOutput = _context.EnvironmentOptions.TestFlags != TestFlags.None ? [] : null;
Process\ProcessSpec.cs (1)
14
public Action<
OutputLine
>? OnOutput { get; set; }
Process\ProjectLauncher.cs (1)
32
Action<
OutputLine
>? onOutput,
UI\BuildOutput.cs (1)
16
public static void ReportBuildOutput(ILogger logger, IEnumerable<
OutputLine
> buildOutput, bool success)
UI\ConsoleReporter.cs (1)
23
void IProcessOutputReporter.ReportOutput(
OutputLine
line)
UI\IReporter.cs (1)
275
void ReportOutput(
OutputLine
line);