diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d5815bc..d46159c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,6 +23,11 @@ stages: vmImage: 'ubuntu-latest' # Specify the Linux agent steps: + - task: UseDotNet@2 + inputs: + packageType: 'sdk' + version: '9.0.4' + - task: NodeTool@0 inputs: versionSource: 'spec' @@ -68,6 +73,12 @@ stages: pool: vmImage: 'windows-latest' # Specify the Windows agent steps: + + - task: UseDotNet@2 + inputs: + packageType: 'sdk' + version: '9.0.4' + - task: NodeTool@0 inputs: versionSource: 'spec'