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 b9a0d16 commit 20801cbCopy full SHA for 20801cb
eng/build.yml
@@ -15,8 +15,17 @@ steps:
15
New-Item -ItemType Directory -Path artifacts/package/release -Force
16
displayName: create folder artifacts/package/$(BuildConfiguration)
17
18
-- script: dotnet restore
+# Authenticate Azure DevOps NuGet feed
19
+- task: NuGetAuthenticate@1
20
+ displayName: 'Authenticate Azure DevOps NuGet feed'
21
+
22
+- task: DotNetCoreCLI@2
23
displayName: Restore packages
24
+ inputs:
25
+ command: restore
26
+ projects: 'coverlet.sln'
27
+ feedsToUse: 'config'
28
+ nugetConfigPath: 'nuget.config'
29
30
- script: dotnet build -c $(BuildConfiguration) --no-restore -bl:build.msbuild.binlog
31
displayName: Build
0 commit comments