【发布时间】:2014-09-20 13:10:46
【问题描述】:
我需要使用 WIX 创建安装项目,还需要使用我的 Windows 应用程序部署 app.config 文件。因此我已将我的 app.config 作为组件添加到 product.wxs 中,如下所示:
<Component Id="App.config" Guid="my guid">
<File Source="Source-path" Name="App.config"
Id="myid" KeyPath="yes"/>
</Component>
一旦我运行 msi 应用程序安装成功,但 app.config xml 文件变得不可读并且应用程序由于此问题而无法运行。如何解决此问题?我是 WIX 的新手
【问题讨论】: