gpt4 book ai didi

azure - 从 YAML 配置 azure-pipelines 中的构建中排除项目

转载 作者:行者123 更新时间:2023-12-05 01:13:24 26 4
gpt4 key购买 nike

我试图排除一些项目在azure pipelines中构建。

我尝试了以下选项...

  • 尝试仅构建 core 下的项目?
- script: dotnet build **/Core/*.csproj --configuration $(buildConfiguration)

- script: dotnet build **/Core/**/*.csproj --configuration $(buildConfiguration)

但找不到好的例子。

我想要构建的项目位于不同的子文件夹下,如 ../../Core/Domain/Domain.csproj ../。 ./Core/Presentation/Presentation.csproj

有什么我想念的吗,有可能吗?或者我只是做错了什么。

最佳答案

您可以使用 dotnetcore cli 任务,如下所示:

- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: |
'**/*.csproj'
'!**/*Mobile*.csproj' # This ignores projects with the occurrence of Mobile anywhere in the filename

关于azure - 从 YAML 配置 azure-pipelines 中的构建中排除项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60321752/

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