Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/wix/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wix I';“我得到了”;产品元素包含意外的子元素RemoveFile错误“;_Wix_Windows Installer - Fatal编程技术网

Wix I';“我得到了”;产品元素包含意外的子元素RemoveFile错误“;

Wix I';“我得到了”;产品元素包含意外的子元素RemoveFile错误“;,wix,windows-installer,Wix,Windows Installer,我在product元素中添加了一个RemoveFile表条目,如下所示: <RemoveFile Filekey="xyz" Component_="acd" FileName="Def" DirProperty="avdf" InstallMode="3"> 是否有任何原因导致出现上述错误?表示移除文件只能是标记组件的子项。这就是错误“意外的子元素RemoveFile”的原因 将代码更改为: <Component Id="Component_RemoveF

我在product元素中添加了一个RemoveFile表条目,如下所示:

<RemoveFile Filekey="xyz" Component_="acd" FileName="Def" DirProperty="avdf" 
 InstallMode="3">     

是否有任何原因导致出现上述错误?

表示
移除文件
只能是标记
组件
的子项。这就是错误“意外的子元素RemoveFile”的原因

将代码更改为:

<Component Id="Component_RemoveFile" Guid="{GUID}">
    <RemoveFile Filekey="xyz" Component_="acd"
                FileName="Def" DirProperty="avdf" InstallMode="3" />
</Component>