其实我对xtd-transform了解不多。我在 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 ?
多谢你们!