Я нашел следующее определение задачи в azure devops:
- task: DotNetCoreCLI@2
name: 'CleanProjectsBeforeBuild'
displayName: Clean Projects Before Build
inputs:
command: 'custom'
projects: $(System.DefaultWorkingDirectory)
custom: 'clean'
arguments: '--configuration $(BuildConfiguration)'
Мой вопрос: «В чем разница между свойством name и свойством displayName?