2

我正在尝试将某些项目排除在azure pipelines中。

我尝试了以下选项...

  • 试图只构建核心下的项目?
- script: dotnet build **/Core/*.csproj --configuration $(buildConfiguration)

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

但是找不到好的例子。

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

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

4

1 回答 1

3

您可以像这样使用 dotnetcore cli 任务:

- task: DotNetCoreCLI@2
  inputs:
  command: 'build'
  projects: |
      **/*.csproj
      !**/*Mobile*.csproj # this ignores projects with the occurunce of Mobile anywhere in the filename
于 2020-02-20T14:11:48.490 回答