这个简单的演练是否适合其他人?不适合我。错误:ComponentGroup元素包含意外的子元素“文件”。这个演练是否过时,无效还是我可能只是在做一些愚蠢的事情?我安装的WiX版本是3.10。和Visual Studio 2015.谢谢
答案 0 :(得分:2)
我认为你错过了创建组件标签。 File标记只能添加到Component标记下面。将组件视为已部署任何内容的容器。
<Component Id="ProductComponent">
<!-- TODO: Insert files, registry keys, and other resources here. -->
</Component>