gpt4 book ai didi

azure-devops - 如何在 Azure Devops 中使用 WIX 创建 .msi 安装程序?

转载 作者:行者123 更新时间:2023-12-05 04:51:51 28 4
gpt4 key购买 nike

我正在尝试使用 yaml 脚本在 azure devops 中为我的 dektop 应用程序创建一个带有 wix 的 .msi 安装程序包。下面是为此创建的 msbuild 任务:

- task: MSBuild@1
inputs:
solution: '**/*.wixproj'
# platform: 'Any CPU'
configuration: 'Release'
msbuildArguments: '/p:Configuration=Release/p:ProductCode=${product_code} /p:UpgradeCode=${upgrade_code}/t:Clean;Rebuild'
clean: true

下面是我在管道构建过程中遇到的错误:

 Error MSB3441: Cannot get assembly name for "..\MyProject\bin\Release\MyProject.exe". Could not load file or assembly 'MyProject.exe' or one of its dependencies. The system cannot find the path specified.

提前致谢。

最佳答案

我们也遇到过这个问题。我们的解决方案是从解决方案文件中删除 Installer 项目,继续使用标准 MSBuild 任务构建解决方案中的其他项目,然后将 script 任务添加到管道以生成微星:

pool:
vmImage: windows-latest

steps:
- script: .\Tools\Wix\candle.exe -nologo Foobar.wxs -out Foobar.wixobj -ext WixUIExtension
displayName: 'Compile Wix file'

- script: .\Tools\Wix\light.exe -nologo Foobar.wixobj -out Foobar.msi -ext WixUIExtension
displayName: 'Create MSI file'

请注意,我们的构建基于包含 WiX 工具集的 windows-latest 镜像;查看所有随附工具的列表 here .

关于azure-devops - 如何在 Azure Devops 中使用 WIX 创建 .msi 安装程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66740839/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com