Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorv-susu1 <v-susu@microsoft.com>2022-03-02 12:11:18 +0300
committerGitHub <noreply@github.com>2022-03-02 12:11:18 +0300
commit637f82100ff6ced64a35f1c6ffcc5375a87478a3 (patch)
tree19aa161a3fe939f997748069a6874bc26e53eba8
parente1cd54c0f6f67eff13ba4c6e4c9634f673857437 (diff)
Update pipeline ymml to add a task to install .net 2.1 since agent machine remove it. (#617)
-rw-r--r--azure-pipelines.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 01da9615..ee0a08fb 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -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'))