基于 WIX 的安装导致配置文件无效

发布于 2024-11-14 03:16:42 字数 463 浏览 1 评论 0原文

编辑

我决定尝试找到一种更简单的方法来提出这个问题:

如果我的基于 WIX 的安装需要将如下所示的 XML 文件修改

<a>
  <b/>
</a>

为如下所示的 XML 文件:

<a>
  <c/>
  <b/>
<a/>

可以吗无需自定义操作即可完成?

使用 XmlConfig 元素,我能得到的最接近的是:

<a>
  <b/>
  <c/>
<a/>

如果我没有说清楚的话,问题是插入的 c 元素必须位于 b 元素之前已经在文件中了。

EDIT

I've decided to try to find a simpler way to ask this question:

If my WIX-based installation needs to modify an XML file that looks like this:

<a>
  <b/>
</a>

into one that looks like this:

<a>
  <c/>
  <b/>
<a/>

Can it be done without a custom action?

Using the XmlConfig element, the closest I can get is this:

<a>
  <b/>
  <c/>
<a/>

The problem, if I have not made it plain, is that the inserted c element must come before the b element already in the file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸠魁 2024-11-21 03:16:42

顺便说一句,XmlConfig 和 XmlFile 被转换为自定义操作。您能否从不同的 xml 文件开始,以便可以按正确的顺序将所有子节点添加到父节点?否则,您可以在此处向 WiX 团队请求此行为作为新功能请求:http: //sourceforge.net/tracker/?group_id=105970&atid=642717

XmlConfig and XmlFile get converted to custom actions btw. Can you start with a different xml file such that you can add all children nodes to the parent in the correct sequence? Otherwise, you can request this behavior as a new feature request to the WiX team here: http://sourceforge.net/tracker/?group_id=105970&atid=642717

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文