gpt4 book ai didi

azure - Msbuild参数/p :PackageAsSingleFile=true is not producing a ZIP file

转载 作者:行者123 更新时间:2023-12-02 07:05:09 25 4
gpt4 key购买 nike

构建环境是VSTS(Azure)。任务是“Visual Studio 构建”。MS 构建参数列表/m:16/p:_DestinationType=AzureWebSite/p:CreatePackageOnPublish=true/p:DeployOnBuild=true/p:WebPublishMethod=Package/p:PackageAsSingleFile=true/p:PackageLocation="$(build.artifactstagingdirectory)\"

有一个解决方案包含三个项目。最后一个项目(.csproj)应该构建 Web 作业,这就是为什么我需要 .ZIP 进行部署。

我包含了/p:PackageAsSingleFile=true 但没有创建 .ZIP 文件。

生成 ZIP 文件所需的 .csproj 中可能缺少什么?

构建输出中没有错误消息。

最佳答案

当有人不小心从网络作业的 .csproj 中删除 Microsoft.Web.WebJobs.Publish 包引用时,我们遇到了同样的问题

当我们把它放回去时,构建管道就开始再次生成 .zip 文件。

<PackageReference Include="Microsoft.Web.WebJobs.Publish">
<Version>2.0.0</Version>
</PackageReference>

在我们的例子中,webjob 目标 Import 语句仍然存在,但这是另一件事要检查:

<Import Project="..\Dependencies\Microsoft.Web.WebJobs.Publish.1.1.0\tools\webjobs.targets" Condition="Exists('..\Dependencies\Microsoft.Web.WebJobs.Publish.1.1.0\tools\webjobs.targets')" />

关于azure - Msbuild参数/p :PackageAsSingleFile=true is not producing a ZIP file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57333772/

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