What .Net Core version to use on agent
问题 Working on a dotnet core test pipeline, running on a Windows Self hosted agent, I have errors. As my project uses DotNet Core 3.1 and when I run "dotnet --version" on the agent it gives 5.0.100, I thought I had to install DotNet Core 3.1 but looking at Add/Remove Programs, I see versions 3.1.301 and 5.0.100 My pipeline contains: job: Test displayName: 'Test' steps: task: UseDotNet@2 inputs: packageType: 'sdk' version: '3.1.x' task: NuGetAuthenticate@0 displayName: 'Authenticate with NuGet'