使用Wix

时间:2016-11-04 21:45:17

标签: wix

我最近尝试使用Wix为我的应用程序创建安装程序。当我卸载应用程序时,除了应用程序在运行时创建的一些文件夹和文件之外,我的所有文件夹和文件都被删除经过一些研究后我发现原因是因为这些文件夹和文件是在安装过程之后创建的。我还发现我想要使用的是RemoveFolderEx元素。不幸的是,我在使用标签时遇到了一些麻烦。这是我当前的代码不起作用:

<Feature Id="ProductFeature" Title="App" Level="1">
  ...
  <ComponentRef Id="deeletappdata" />
</Feature>

<Component Id="deeletappdata" Guid="*" Directory="AppDataFolder">
  <util:RemoveFolderEx Id="RemoveAppDataAppContent" On="uninstall" Property="AppDataAppFolderDir" />
</Component>

<Directory Id="AppDataFolder">
  <Directory Id="AppDataAppFolderDir" Name="$(var.Application)"/>
</Directory>

如何使用元素RemoveFolderEx?

0 个答案:

没有答案