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.
2 parents f2b9aa5 + eac3d66 commit 04bd04eCopy full SHA for 04bd04e
1 file changed
.azure-pipelines/ci-build.yml
@@ -79,6 +79,20 @@ extends:
79
checkLatest: true
80
81
# Build the Product project
82
+ - task: NuGetAuthenticate@1
83
+ displayName: 'Authenticate to Azure Artifacts'
84
+
85
+ - pwsh: |
86
+ @"
87
+ <?xml version="1.0" encoding="utf-8"?>
88
+ <configuration>
89
+ <packageSources>
90
+ <clear />
91
+ <add key="GraphDeveloperExperiences_Public" value="https://microsoftgraph.pkgs.visualstudio.com/0985d294-5762-4bc2-a565-161ef349ca3e/_packaging/GraphDeveloperExperiences_Public/nuget/v3/index.json" />
92
+ </packageSources>
93
+ </configuration>
94
+ "@ | Set-Content -Path "$(Build.SourcesDirectory)/nuget.config" -Encoding UTF8
95
+ displayName: 'Create nuget.config (central feed)'
96
- task: DotNetCoreCLI@2
97
displayName: 'build'
98
inputs:
0 commit comments