2 instantiations of DocumentFileInfo
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
MSBuild\ProjectFile\ProjectInstanceReader.cs (2)
191return new DocumentFileInfo(filePath, logicalPath, isLinked, isGenerated: false, folders); 201return new DocumentFileInfo(filePath, logicalPath, isLinked, isGenerated: false, folders);
7 references to DocumentFileInfo
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
MSBuild\MSBuildProjectLoader.Worker.cs (2)
346private ImmutableArray<DocumentInfo> CreateDocumentInfos(IReadOnlyList<DocumentFileInfo> documentFileInfos, ProjectId projectId, Encoding? encoding) 350foreach (var info in documentFileInfos)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
MSBuild\ProjectFile\ProjectInstanceReader.cs (2)
184private DocumentFileInfo MakeDocumentFileInfo(MSB.Framework.ITaskItem documentItem) 194private DocumentFileInfo MakeNonSourceFileDocumentFileInfo(MSB.Framework.ITaskItem documentItem)
Microsoft.CodeAnalysis.Workspaces.MSBuild.Contracts (3)
ProjectFileInfo.cs (3)
92public ImmutableArray<DocumentFileInfo> Documents { get; init; } 98public ImmutableArray<DocumentFileInfo> AdditionalDocuments { get; init; } 104public ImmutableArray<DocumentFileInfo> AnalyzerConfigDocuments { get; init; }