I have an application that uses .NET Core 3.1 but in .NET Core Build and Publish tasks, the dropdown menu offers only 'til 2.x version.
How am I supposed to use them or what workaround instead? Simple CLI?
Thanks in advance
@Patrick
.NET Core Task is this right?
But how should be that different compared to Restore/Build/Publish that are aldready set up in .NET Core pipeline?
If that so, I guess I just need to set the command with my custom publish value:
dotnet publish myPath -c release -f netcoreapp3.0 --self-contained true -r win-x64
Am I right?