基于 WIX 的安装导致配置文件无效
编辑
我决定尝试找到一种更简单的方法来提出这个问题:
如果我的基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
顺便说一句,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