gpt4 book ai didi

.net - Azure DevOps YAML - 手动还原多个项目

转载 作者:行者123 更新时间:2023-12-04 00:25:58 24 4
gpt4 key购买 nike

我将 Azure DevOps 与 .Net Core Restore 一起使用,但指定多个项目(如 VSTS 中的逐行)输出“没有与搜索模式匹配的文件。”。

如果只有一个项目可以工作,我该如何处理多个项目?

- task: DotNetCoreCLI@2
name: "ProvisionRestoreProjects"
inputs:
command: 'restore'
projects: '**/ProjectA.csproj
**/ProjectB.csproj'
feedsToUse: 'select'
vstsFeed: 'MyFeedArtifact-master'
arguments: '--configuration release --no-cache'

最佳答案

您可以通过这种方式指定多个项目:

- task DotNetCoreCLI@2
inputs:
commands: restore
projects: |
**/ProjectA.csproj
**/ProjectB.csproj
vstsFeed: 'my-feed'

我猜您使用了 Tasks 助手并生成了 yaml,但我认为那里存在错误。

关于.net - Azure DevOps YAML - 手动还原多个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56853165/

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