Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/google-apps-script/6.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
Windows installer 如何使用CI-CD安装windows installer?我希望部署将.msi放置在特定位置_Windows Installer_Continuous Deployment - Fatal编程技术网

Windows installer 如何使用CI-CD安装windows installer?我希望部署将.msi放置在特定位置

Windows installer 如何使用CI-CD安装windows installer?我希望部署将.msi放置在特定位置,windows-installer,continuous-deployment,Windows Installer,Continuous Deployment,我想在Azure DevOps中为具有安装程序的Winform应用程序创建CI-CD管道。我希望我的CD在每次签入后都将.msi/.exe放入指定的位置/放置文件夹,其中包含最新版本。是为这种情况量身定制的。将.wixproj添加到您的解决方案中,编写安装代码,它将在Azure DevOps中正常工作。它甚至可以在托管的Azure DevOps构建中工作,因为WiX工具集是其映像的一部分 WiX工具集功能强大,您可以在中阅读更多信息。我使用了高级安装程序打包工具,这非常容易与Azure DevO

我想在Azure DevOps中为具有安装程序的Winform应用程序创建CI-CD管道。我希望我的CD在每次签入后都将.msi/.exe放入指定的位置/放置文件夹,其中包含最新版本。

是为这种情况量身定制的。将.wixproj添加到您的解决方案中,编写安装代码,它将在Azure DevOps中正常工作。它甚至可以在托管的Azure DevOps构建中工作,因为WiX工具集是其映像的一部分


WiX工具集功能强大,您可以在中阅读更多信息。

我使用了高级安装程序打包工具,这非常容易与Azure DevOps连续交付集成。下面是一篇分步介绍如何配置安装程序连续交付的小文章:

此外,您还可以通过使用高级安装程序与VisualStudio解决方案轻松集成