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)
144foreach (var referenceInfo in parsedProject.Value.ReferenceInfos) 184foreach (ProjectInterpretation.ReferenceInfo referenceInfo in parsedProject.ReferenceInfos) 573private List<ProjectInterpretation.ReferenceInfo> ParseReferences(ProjectGraphNode parsedProject) 575var referenceInfos = new List<ProjectInterpretation.ReferenceInfo>(); 577foreach (var referenceInfo in _projectInterpretation.GetReferences(parsedProject, _projectCollection, GetInstanceForPlatformNegotiationWithCaching)) 727public List<ProjectInterpretation.ReferenceInfo> ReferenceInfos { get; } 729public ParsedProject(ConfigurationMetadata configurationMetadata, ProjectGraphNode graphNode, List<ProjectInterpretation.ReferenceInfo> referenceInfos)
Graph\ProjectInterpretation.cs (1)
77public IEnumerable<ReferenceInfo> GetReferences(ProjectGraphNode projectGraphNode, ProjectCollection projectCollection, ProjectGraph.ProjectInstanceFactoryFunc projectInstanceFactory)