Aaron Rumford
Aaron Rumford

Reputation: 596

Azure DevOps install .Net Core 3.1 on CI Agents

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

Answers (1)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41805

You can use the Use .NET Core task and specify there the version you need (3.1.x for 3.1):

enter image description here

The task results:

enter image description here

Upvotes: 2

Related Questions