From 6cfe130d03c7ff6414795c22f6cf0ff75590b5d0 Mon Sep 17 00:00:00 2001 From: kolosovpetro Date: Mon, 24 Mar 2025 02:28:21 +0100 Subject: [PATCH 1/2] add nuget config --- build/templates/docker-build-push-jobs.yml | 1 + nuget.config | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 nuget.config diff --git a/build/templates/docker-build-push-jobs.yml b/build/templates/docker-build-push-jobs.yml index 4e59262..979c003 100644 --- a/build/templates/docker-build-push-jobs.yml +++ b/build/templates/docker-build-push-jobs.yml @@ -101,6 +101,7 @@ jobs: command: 'restore' projects: '${{ parameters.solution }}' arguments: '--verbosity minimal' + nugetConfigPath: 'nuget.config' - task: DotNetCoreCLI@2 displayName: 'Build solution' diff --git a/nuget.config b/nuget.config new file mode 100644 index 0000000..4c0db7e --- /dev/null +++ b/nuget.config @@ -0,0 +1,7 @@ + + + + + + + From 4c615b4e4f1e97662c8b40e67a59f57ed7a8406a Mon Sep 17 00:00:00 2001 From: kolosovpetro Date: Mon, 24 Mar 2025 02:29:41 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a011a6..b22b9a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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