2 instantiations of XmlTransformation
Microsoft.NET.Sdk.Publish.Tasks (1)
Tasks\Xdt\TransformXml.cs (1)
227return new XmlTransformation(transformFile, logger);
NuGet.PackageManagement (1)
FileModifiers\XdtTransformer.cs (1)
111using (var transformation = new XmlTransformation(content, isTransformAFile: false, logger: null))
7 references to XmlTransformation
Microsoft.NET.Sdk.Publish.Tasks (2)
Tasks\Xdt\TransformXml.cs (2)
111XmlTransformation? transformation = null; 223private XmlTransformation OpenTransformFile(string? transformFile, IXmlTransformationLogger? logger)
Microsoft.Web.XmlTransform (4)
XmlElementContext.cs (2)
224if (attribute.NamespaceURI == XmlTransformation.TransformNamespace) { 326objectAttribute = Element.Attributes.GetNamedItem(typeof(ObjectType).Name, XmlTransformation.TransformNamespace) as XmlAttribute;
XmlTransformation.cs (2)
248XmlAttribute SupressWarningsAttribute = context.Element.Attributes.GetNamedItem(XmlTransformation.SupressWarnings, XmlTransformation.TransformNamespace) as XmlAttribute;
NuGet.PackageManagement (1)
FileModifiers\XdtTransformer.cs (1)
111using (var transformation = new XmlTransformation(content, isTransformAFile: false, logger: null))