如何使用 dotnet list 破坏构建——在 Azure Pipeline 中已弃用

How can I break the build with dotnet list --deprecated in a Azure Pipeline

我想检查我的解决方案是否使用了已弃用的 NuGet 包。

所以我添加了

- task: dotNetCoreCLI@2
  name: checkDeprecatedNuGet
  inputs:
    command: 'custom'
    projects: '**/*.sln'
    custom: 'list'
    arguments: 'package --deprecated'

现在它列出了已弃用的包,但构建成功。

在这种情况下是否有可能破坏构建?

如果你的意思是你想在有不推荐使用的包时中断构建,我不认为你可以在 dotNetCoreCLI 任务中实现它。当此任务运行s成功时,将被视为“通过”。

您可以尝试对 运行 dotNetCore 命令使用 powershell 任务,如果存在已弃用的包,则写入错误以使构建失败:

# Writes an error to build summary and to log in red text
Write-Host  "##vso[task.LogIssue type=error;]This is the error"

如果您希望此错误导致构建失败,请添加此行:

exit 1

这是我现在使用的解决方案:

$projectDirectory = "$(Agent.BuildDirectory)/s/$(RepoName)"
$solutions = Get-ChildItem -Path $projectDirectory/** -Name -Include *.sln
foreach ($solution in $solutions)
{
  $output = dotnet list $projectDirectory/$solution package --deprecated
  $errors = $output | Select-String '>'
  
  if ($errors.Count -gt 0)
  {
    foreach ($err in $errors)
    {
      Write-Host "##vso[task.logissue type=error]Reference to deprecated NuGet-package $err"
    }
    exit 1
  }
  else
  {
    Write-Host "No deprecated NuGet-package"
    exit 0
  }
}