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

restore-internal-tools.yml « common « pipelines « eng - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d289d82b53505c3aba95304b227f87e9e426cac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
steps:
  - task: NuGetAuthenticate@0
    inputs:
      nuGetServiceConnections: 'dotnet-core-internal-tooling'
      forceReinstallCredentialProvider: true

  - script: $(Build.SourcesDirectory)$(dir)build$(scriptExt)
            -ci
            -restore
            -configuration $(_BuildConfig)
            -projects $(Build.SourcesDirectory)/eng/common/internal/Tools.csproj
            /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/RestoreInternal.binlog
            /v:normal
    displayName: Restore internal tools
    condition: and(succeeded(), ne(variables['_skipRestoreInternalTools'], 'true'))