5 instantiations of TerminalNodeStatus
Microsoft.Build (5)
Logging\TerminalLogger\TerminalLogger.cs (5)
770
_nodes[nodeIndex] = new
TerminalNodeStatus
(e.ProjectFile!, targetFramework, runtimeIdentifier, "Restore", _projects[c].Stopwatch);
1083
TerminalNodeStatus nodeStatus =
new
(projectFile, project.TargetFramework, project.RuntimeIdentifier, GetDisplayTargetName(targetName), project.Stopwatch);
1188
TerminalNodeStatus nodeStatus =
new
(projectFile, project.TargetFramework, project.RuntimeIdentifier, GetDisplayTargetName(targetName), project.Stopwatch);
1266
var status = new
TerminalNodeStatus
(node.Project, node.TargetFramework, node.RuntimeIdentifier, TerminalColor.Green, indicator, displayName, project.Stopwatch);
1279
var status = new
TerminalNodeStatus
(node.Project, node.TargetFramework, node.RuntimeIdentifier, TerminalColor.Yellow, indicator, displayName, project.Stopwatch);
16 references to TerminalNodeStatus
Microsoft.Build (16)
Logging\TerminalLogger\TerminalLogger.cs (10)
116
private
TerminalNodeStatus
?[] _nodes = Array.Empty<
TerminalNodeStatus
>();
167
private TerminalNodesFrame _currentFrame = new(Array.Empty<
TerminalNodeStatus
>(), 0, 0);
436
_nodes = new
TerminalNodeStatus
[nodeCount + 1];
1083
TerminalNodeStatus
nodeStatus = new(projectFile, project.TargetFramework, project.RuntimeIdentifier, GetDisplayTargetName(targetName), project.Stopwatch);
1088
private void UpdateNodeStatus(BuildEventContext buildEventContext,
TerminalNodeStatus
? nodeStatus)
1188
TerminalNodeStatus
nodeStatus = new(projectFile, project.TargetFramework, project.RuntimeIdentifier, GetDisplayTargetName(targetName), project.Stopwatch);
1252
TerminalNodeStatus
? node = _nodes[nodeIndex];
1266
var
status = new TerminalNodeStatus(node.Project, node.TargetFramework, node.RuntimeIdentifier, TerminalColor.Green, indicator, displayName, project.Stopwatch);
1279
var
status = new TerminalNodeStatus(node.Project, node.TargetFramework, node.RuntimeIdentifier, TerminalColor.Yellow, indicator, displayName, project.Stopwatch);
Logging\TerminalLogger\TerminalNodesFrame.cs (5)
19
private readonly (
TerminalNodeStatus
nodeStatus, int durationLength)[] _nodes;
27
public TerminalNodesFrame(
TerminalNodeStatus
?[] nodes, int width, int height)
32
_nodes = new (
TerminalNodeStatus
, int)[nodes.Length];
34
foreach (
TerminalNodeStatus
? status in nodes)
45
TerminalNodeStatus
status = _nodes[i].nodeStatus;
Logging\TerminalLogger\TerminalNodeStatus.cs (1)
67
public virtual bool Equals(
TerminalNodeStatus
? other) =>