8 references to NodeVisitationState
Microsoft.Build (8)
Graph\GraphBuilder.cs (8)
453
var nodeStates = new Dictionary<ProjectGraphNode,
NodeVisitationState
>();
457
if (!nodeStates.TryGetValue(entryPointNode, out
NodeVisitationState
state))
463
Assumed.Equal(state,
NodeVisitationState
.Processed, "entrypoints should get processed after a call to detect cycles");
471
IDictionary<ProjectGraphNode,
NodeVisitationState
> nodeState)
473
nodeState[node] =
NodeVisitationState
.InProcess;
477
if (nodeState.TryGetValue(referenceNode, out
var
projectReferenceNodeState))
481
if (projectReferenceNodeState ==
NodeVisitationState
.InProcess)
527
nodeState[node] =
NodeVisitationState
.Processed;