我正在尝试<TransformXml>
在我的 Web 项目 (.csproj/.vbproj) 中使用该任务来转换配置文件和其他 XML 文件。我使用 msbuild 脚本 (powershell) 来构建和打包我的代码,并生成基于环境的转换配置和 XML 文件。
这一切都非常适合简单的用法,例如Match
,等等,但我最近尝试有点聪明,并使用XPath定位器来查找一组节点中的最后一个节点,以便仅设置该节点的属性最后一个节点。此外,我想在最后一个节点之后插入一个新节点,并带有一些额外的属性。Condition
SetAttributes
尝试此语法时:
<parent>
<a xdt:Transform="SetAttributes(from)" xdt:Locator="XPath(/a[ancestor-or-self::section[last()]])" from="20130522" />
<a xdt:Transform="SetAttributes(to)" xdt:Locator="XPath(/a[ancestor-or-self::section[last()]])" to="20130630" />
<a xdt:Transform="InsertAfter(XPath(/a[ancestor-or-self::section[last()]]))" from="20130701" to="20140101" />
</parent>
在 XML(缩短)上,大致如下所示:
<parent>
<a from="xxx1" to="yyy1">
<one>one</one>
<two>two</two>
</a>
<a from="xxx2" to="yyy2">
<one>one</one>
<two>two</two>
</a>
<a from="xxx3" to="yyy3">
<one>one</one>
<two>two</two>
</a>
</parent>
...我得到了熟悉的(和预期的)错误
Namespace Manager or XsltContext needed. This query has a prefix, variable, or user-defined function.
我能找到的所有答案都围绕着使用代码来指定命名空间管理器,这很有意义 - 但我没有这个过程的代码,它都在TransformXml
任务和纯 XML 的范围内。我不知道 XPath 查询的哪一部分导致了这个错误的发生,或者我如何指定我需要运行的任务类型。
我怎样才能做到这一点?甚至可以在转换中进行这种类型的节点操作吗?
谢谢
编辑:我现在可以看到错误发生在 InsertAfter 调用上,而不是 SetAttributes 上——所以这部分似乎是导致问题的原因。