1 instantiation of XmlReaderExtension
Microsoft.Build (1)
Xml\XmlReaderExtension.cs (1)
27return new XmlReaderExtension(filePath, loadAsReadOnly);
7 references to XmlReaderExtension
Microsoft.Build (7)
Construction\ProjectRootElement.cs (2)
2066using (XmlReaderExtension xtr = XmlReaderExtension.Create(fullPath, loadAsReadOnly))
ElementLocation\XmlDocumentWithLocation.cs (2)
163using (var xtr = XmlReaderExtension.Create(fullPath, _loadAsReadOnly ?? false))
Evaluation\ProjectRootElementCache.cs (2)
211using (var xtr = XmlReaderExtension.Create(projectRootElement.FullPath, projectRootElement.ProjectRootElementCache.LoadProjectsReadOnly))
Xml\XmlReaderExtension.cs (1)
25internal static XmlReaderExtension Create(string filePath, bool loadAsReadOnly)