猿问

如何将 [ConsoleAppName].exe.config 包含到 wix 安装中

我有一个包含多个项目的解决方案。我刚刚添加了一个控制台应用程序作为项目之一。构建解决方案将 [ConsoleApp].exe.config 正确放置在 bin\debug 文件夹中。这是一个相当古老的代码库,并使用 wix 创建 msi(不熟悉 wix)。[ConsoleApp].exe.config 未部署到服务器。我怎样才能获得包含在 msi 中的配置?



慕村9548890
浏览 111回答 1
1回答

慕姐4208626

WiX:你确定这是一个 WiX 项目吗?你看到任何*.wxs文件吗?正常情况下Product.wxs。如果它是 WiX 项目,则添加新的 WiX 组件来安装文件,或者将文件添加到现有组件。我喜欢为每个文件添加一个新组件。<Directory Id="TARGETDIR" Name="SourceDir">&nbsp; <Directory Id="ProgramFilesFolder">&nbsp; &nbsp; <Directory Id="INSTALLFOLDER" Name="My Folder">&nbsp; &nbsp; &nbsp; <!-- Pre-Existing File, mock-up absolute path -->&nbsp; &nbsp; &nbsp; <Component Feature="MainApplication" >&nbsp; &nbsp; &nbsp; &nbsp; <File Source="C:\MyPath\MyApp.exe" />&nbsp; &nbsp; &nbsp; </Component>&nbsp; &nbsp; &nbsp; <!-- New File, mock-up absolute path -->&nbsp; &nbsp; &nbsp; <Component Feature="MainApplication">&nbsp; &nbsp; &nbsp; &nbsp; <File Source="C:\MyPath\MyApp.exe.config " />&nbsp; &nbsp; &nbsp; </Component>&nbsp; &nbsp; </Directory>&nbsp; </Directory></Directory>
随时随地看视频慕课网APP
我要回答