其实我对xtd转换不了解很多。
我在xdt文件中需要什么:

<add key="EndpointName" value="SomeValue" xdt:Transform="SetAttributes(value)" xdt:Locator="Match(key)" />

我在powershell中执行的常规工作:
$cache.SetAttribute("key","EndpointName")
$cache.SetAttribute("value","SomeValue")
$cache.SetAttribute("xdt:Transform","SetAttributes(value)")
$cache.SetAttribute("xdt:Locator","Match(key)")

这就是我所拥有的。不符合我的观点:
<add key="EndpointName" value="Email" Transform="SetAttributes(value)" Locator="Match(key)" />

那么可以使用Powershell脚本创建xdt:attribute吗?

谢谢你们!

最佳答案

当涉及XML namespace 时,您需要使用XmlNamespaceManager例如:

$xdt = 'http://schemas.microsoft.com/XML-Document-Transform'
$xml = [xml]"<doc xmlns:xdt='$xdt'><add key='foo' value='foo' xdt:Transform='foo' xdt:Locator='foo'/></doc>"

$nsmgr = new-object Xml.XmlNamespaceManager $xml.NameTable
$nsmgr.AddNamespace("xdt", $xdt)

$xml.doc.add.SetAttribute('Transform', $xdt, 'SetAttribute(value)') > $null

结果是:
<doc xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <add key="foo" value="foo" xdt:Transform="SetAttribute(value)" xdt:Locator="foo" />
</doc>

10-04 15:54