8 references to NodeVisitationState
Microsoft.Build (8)
Graph\GraphBuilder.cs (8)
456
var nodeStates = new Dictionary<ProjectGraphNode,
NodeVisitationState
>();
460
if (!nodeStates.TryGetValue(entryPointNode, out
NodeVisitationState
state))
466
Assumed.Equal(state,
NodeVisitationState
.Processed, "entrypoints should get processed after a call to detect cycles");
474
IDictionary<ProjectGraphNode,
NodeVisitationState
> nodeState)
476
nodeState[node] =
NodeVisitationState
.InProcess;
480
if (nodeState.TryGetValue(referenceNode, out
var
projectReferenceNodeState))
484
if (projectReferenceNodeState ==
NodeVisitationState
.InProcess)
530
nodeState[node] =
NodeVisitationState
.Processed;