How to ensure a "dotnet tool" is installed in an Azure Pipeline?
In a Azure Devop Build, I'm using a tool(https://github.com/tomchavakis/nuget-license). I want this tool to be installed in my Azure Devop Agent. I've created this task in my YML: - task: CmdLine@2 displayName: 'Install dotnet-project-licenses' inputs: script: 'dotnet tool install dotnet-project-licenses…