Update pipeline ymml to add a task to install .net 2.1 since agent machine remove it. (#617)

This commit is contained in:
v-susu1 2022-03-02 17:11:18 +08:00 коммит произвёл GitHub
Родитель e1cd54c0f6
Коммит 637f82100f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -101,6 +101,13 @@ stages:
targetType: 'inline'
script: 'make prepare all check CONFIGURATION=$(buildConfiguration)'
- task: UseDotNet@2
displayName: 'Use .NET Core sdk'
inputs:
packageType: sdk
version: 2.1.x
installationPath: $(Agent.ToolsDirectory)/dotnet
- task: EsrpCodeSigning@1
displayName: Sign executable and dll files
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))