Reputation: 596
I am trying to update my agents on an Azure DevOps build pipeline and I need to update to Azure 3.1.
I've found instructions (though vague) to do so using YAML, but I am using the classic view and do not have access (that I know of) to YAML instruction sets.
Does anyone know how I can accomplish this?
I know I need to include a Task before the Restore portion, but there is not step that I see that will allow me to install the SDK on the agents. Any assistance is greatly appreciated.
Upvotes: 0
Views: 840
Reputation: 41805
You can use the Use .NET Core task and specify there the version you need (3.1.x
for 3.1):
The task results:
Upvotes: 2