1 instantiation of ReferenceInfo
Microsoft.Build (1)
Graph\ProjectInterpretation.cs (1)
201yield return new ReferenceInfo(referenceConfig, projectReferenceItem);
8 references to ReferenceInfo
Microsoft.Build (8)
Graph\GraphBuilder.cs (7)
145foreach (var referenceInfo in parsedProject.Value.ReferenceInfos) 185foreach (ProjectInterpretation.ReferenceInfo referenceInfo in parsedProject.ReferenceInfos) 574private List<ProjectInterpretation.ReferenceInfo> ParseReferences(ProjectGraphNode parsedProject) 576var referenceInfos = new List<ProjectInterpretation.ReferenceInfo>(); 578foreach (var referenceInfo in _projectInterpretation.GetReferences(parsedProject, _projectCollection, GetInstanceForPlatformNegotiationWithCaching)) 728public List<ProjectInterpretation.ReferenceInfo> ReferenceInfos { get; } 730public ParsedProject(ConfigurationMetadata configurationMetadata, ProjectGraphNode graphNode, List<ProjectInterpretation.ReferenceInfo> referenceInfos)
Graph\ProjectInterpretation.cs (1)
77public IEnumerable<ReferenceInfo> GetReferences(ProjectGraphNode projectGraphNode, ProjectCollection projectCollection, ProjectGraph.ProjectInstanceFactoryFunc projectInstanceFactory)