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