29 references to XmlNamespaces
Microsoft.Build.Tasks.Core (29)
AddToWin32Manifest.cs (3)
130XmlNamespaceManager xmlNamespaceManager = XmlNamespaces.GetNamespaceManager(document.NameTable); 213XmlElement appNode = GetOrCreateXmlElement(document, xmlNamespaceManager, application, asmv3Prefix, XmlNamespaces.asmv3); 214XmlElement winSettingsNode = GetOrCreateXmlElement(document, xmlNamespaceManager, windowsSettings, asmv3Prefix, XmlNamespaces.asmv3);
GenerateApplicationManifest.cs (1)
460var nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable);
ManifestUtil\ApplicationManifest.cs (1)
535XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable);
ManifestUtil\AssemblyIdentity.cs (1)
242XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable);
ManifestUtil\Manifest.cs (1)
384XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable);
ManifestUtil\ManifestFormatter.cs (1)
24XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(r.NameTable);
ManifestUtil\ManifestReader.cs (1)
26XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable);
ManifestUtil\TrustInfo.cs (20)
66XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable); 130defaultAssemblyRequestElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.defaultAssemblyRequestElement), XmlNamespaces.asmv2); 180XmlElement trustInfoElement = _inputTrustInfoDocument.CreateElement(XmlUtil.TrimPrefix(XPaths.trustInfoElement), XmlNamespaces.asmv2); 193XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(_inputTrustInfoDocument.NameTable); 218XmlElement requestedPrivilegeElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.requestedPrivilegeElement), XmlNamespaces.asmv3); 253XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable); 296XmlElement requestedExecutionLevelElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.requestedExecutionLevelElement), XmlNamespaces.asmv3); 318XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable); 323securityElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.securityElement), XmlNamespaces.asmv2); 329applicationRequestMinimumElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.applicationRequestMinimumElement), XmlNamespaces.asmv2); 335permissionSetElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.permissionSetElement), XmlNamespaces.asmv2); 337XmlAttribute unrestrictedAttribute = document.CreateAttribute(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute), XmlNamespaces.asmv2); 459XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable); 564XmlElement outputPermissionSetElement = XmlUtil.CloneElementToDocument(inputPermissionSetElement, outputDocument, XmlNamespaces.asmv2); 709XmlNamespaceManager nsmgr = XmlNamespaces.GetNamespaceManager(document.NameTable); 719trustInfoElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.trustInfoElement), XmlNamespaces.asmv2); 729securityElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.securityElement), XmlNamespaces.asmv2); 735applicationRequestMinimumElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.applicationRequestMinimumElement), XmlNamespaces.asmv2); 745XmlElement fullTrustPermissionSetElement = document.CreateElement(XmlUtil.TrimPrefix(XPaths.permissionSetElement), XmlNamespaces.asmv2); 746XmlAttribute unrestrictedAttribute = document.CreateAttribute(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute), XmlNamespaces.asmv2);