示例:
trigger:
- main
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 6.x'
inputs:
version: 6.x
- task: NuGetToolInstaller@1
displayName: 'Install NuGet'
- task: NuGetCommand@2
displayName: 'Restore NuGet packages'
inputs:
command: 'restore'
restoreSolution: '**/*.sln'
在示例中,NuGetCommand任务指定要恢复软件包的解决方案文件(“**/*.sln”)。根据实际情况,可以将其替换为指定要恢复软件包的项目文件的路径。