DotNetCoreCLI restore vs NuGetCommand restore
I am trying to understand the difference between the two nuget restore commands in Azure build pipeline: - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' and - task: DotNetCoreCLI@2 inputs: command: 'restore' projects: '$(solution)' feedsToUse: 'select' I have tried to understand but at microsoft pages all I see is that one can use both - I can'