在 Azure 中,我们有一个管道,可以恢复 C# 解决方案的 nuget 包:
- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: '$(solution)'
feedsToUse: 'select'
vstsFeed: 'xxxxxxxxxxxxxxx'
includeNuGetOrg: true
到目前为止,管道一直运行顺利。然而,有一天,我们在控制台中收到以下错误消息:
##[error]The nuget command failed with exit code(null) and error()
##[error]Packages failed to restore
- 控制台中没有进一步的错误消息来告诉我们原因。
- 我们不使用缓存。
- 在本地,在 Visual Studio 中,恢复命令运行良好。
有人知道哪里出了问题吗?