2 writes to _nodes
Microsoft.Build (2)
Logging\TerminalLogger\TerminalLogger.cs (2)
430
_nodes
= new TerminalNodeStatus[nodeCount + 1];
1084
Array.Resize(ref
_nodes
, newSize);
9 references to _nodes
Microsoft.Build (9)
Logging\TerminalLogger\TerminalLogger.cs (9)
744
_nodes
[nodeIndex] = new TerminalNodeStatus(e.ProjectFile!, targetFramework, runtimeIdentifier, "Restore", _projects[c].Stopwatch);
1066
_nodes
[nodeIndex] = nodeStatus;
1070
/// Ensures that the <see cref="
_nodes
"/> array has enough capacity to accommodate the given index.
1076
if (_isReplayMode && nodeIndex >=
_nodes
.Length)
1081
if (nodeIndex >=
_nodes
.Length)
1083
int newSize = Math.Max(nodeIndex + 1,
_nodes
.Length * 2);
1227
TerminalNodeStatus? node =
_nodes
[nodeIndex];
1480
TerminalNodesFrame newFrame = new TerminalNodesFrame(
_nodes
, width: width, height: height);
1580
/// Returns the <see cref="
_nodes
"/> index corresponding to the given <see cref="BuildEventContext"/>.