It's great that .Net Core 3.1 is out, but I'm not sure the Azure Pipelines hosted agents have caught up.
My YAML pipeline specifies:
pool:
vmImage: 'windows-latest'
and the dotnet restore
step does this:
(_CheckForUnsupportedNETCoreVersion target) -> C:\Program Files\dotnet\sdk\3.0.100\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.TargetFrameworkInference.targets(127,5): error NETSDK1045: The current .NET SDK does not support targeting .NET Core 3.1. Either target .NET Core 3.0 or lower, or use a version of the .NET SDK that supports .NET Core 3.1. [D:\a\1\s\StatsNZ.BESt.DataService\StatsNZ.BESt.DataService.csproj]
works fine in .Net Core 3.0.
Are there any work-arounds, or do we have to wait for Azure DevOps to catch up?