3 instantiations of ReferenceInfo
Microsoft.Build (3)
Graph\ProjectInterpretation.cs (3)
221yield return new ReferenceInfo(new ConfigurationMetadata(projectReferenceFullPath, outerBuildProperties), projectReferenceItem); 235yield return new ReferenceInfo(new ConfigurationMetadata(projectReferenceFullPath, singleTargetProperties), projectReferenceItem); 241yield return new ReferenceInfo(referenceConfig, projectReferenceItem);
8 references to ReferenceInfo
Microsoft.Build (8)
Graph\GraphBuilder.cs (7)
156foreach (var referenceInfo in parsedProject.Value.ReferenceInfos) 196foreach (ProjectInterpretation.ReferenceInfo referenceInfo in parsedProject.ReferenceInfos) 617private List<ProjectInterpretation.ReferenceInfo> ParseReferences(ProjectGraphNode parsedProject) 619var referenceInfos = new List<ProjectInterpretation.ReferenceInfo>(); 621foreach (var referenceInfo in _projectInterpretation.GetReferences(parsedProject, _projectCollection, GetInstanceForPlatformNegotiationWithCaching, _graphMode)) 775public List<ProjectInterpretation.ReferenceInfo> ReferenceInfos { get; } 777public ParsedProject(ConfigurationMetadata configurationMetadata, ProjectGraphNode graphNode, List<ProjectInterpretation.ReferenceInfo> referenceInfos)
Graph\ProjectInterpretation.cs (1)
75public IEnumerable<ReferenceInfo> GetReferences(ProjectGraphNode projectGraphNode, ProjectCollection projectCollection, ProjectGraph.ProjectInstanceFactoryFunc projectInstanceFactory, ProjectGraphMode graphMode)