We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ba19c commit 8f8375cCopy full SHA for 8f8375c
azure-pipelines.yml
@@ -79,6 +79,21 @@ jobs:
79
vmImage: 'VS2017-Win2016'
80
81
steps:
82
+ # need this here in order to persist GitHub credentials
83
+ - checkout: self
84
+
85
+ - script: |
86
+ git config --global user.email [email protected]
87
+ git config --global user.name nfbot
88
+ git config --global core.autocrlf true
89
+ displayName: Setup git identity
90
91
+ - task: NuGetToolInstaller@0
92
+ inputs:
93
+ versionSpec: '4.9.3'
94
+ condition: ne( variables['StartReleaseCandidate'], true )
95
+ displayName: 'Install specific version of NuGet'
96
97
# update dependencies
98
- task: UpdatenFDependencies@1
99
inputs:
0 commit comments