Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ and this project adheres to [Semantic Versioning v2.0.0](https://semver.org/spec
- Fix the error Unable to unprotect the message.State.
- ArgoCD initial config
- ArgoCD application manifest
- Add nuget.config
1 change: 1 addition & 0 deletions build/templates/docker-build-push-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ jobs:
command: 'restore'
projects: '${{ parameters.solution }}'
arguments: '--verbosity minimal'
nugetConfigPath: 'nuget.config'

- task: DotNetCoreCLI@2
displayName: 'Build solution'
Expand Down
7 changes: 7 additions & 0 deletions nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>