编写 Azure Pipelines yaml 脚本时是否可以运行 DotNetCoreCLI 任务的预发布版本?如果可能的话,我想使用 3.0.1xx 来利用dotnet tool update
安装工具而不是在未安装时抛出错误。
如果可能的话,使用预发布版本而不是版本 2 进行这样的调用的语法是什么:
- task: DotNetCoreCLI@2
continueOnError: true
inputs:
command: custom
custom: tool
arguments: install -g coverlet.console
displayName: Install Coverlet tool. This task will continue on error if coverlet is already installed.