From 750d779e2a155330f25e02e626d1e90587d1a367 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Sep 2025 00:25:05 +0000 Subject: [PATCH 1/2] Initial plan From 65cb6ed0a0bffa01aed8b65efd0ef555a8ee46d3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Sep 2025 00:28:57 +0000 Subject: [PATCH 2/2] Fix duplicate NuGet package push by removing explicit snupkg pattern Co-authored-by: Arash-Sabet <26050123+Arash-Sabet@users.noreply.github.com> --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 190eaec..a726ba5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -100,12 +100,12 @@ steps: ArtifactName: 'packages' publishLocation: 'Container' -# Push both nupkg & snupkg (exclude legacy symbols.nupkg) +# Push nupkg files (snupkg symbols packages are automatically handled by NuGet) - task: NuGetCommand@2 displayName: 'Pushing to nuget.org' inputs: command: 'push' - packagesToPush: '$(Build.ArtifactStagingDirectory)/packages/**/*.nupkg;$(Build.ArtifactStagingDirectory)/packages/**/*.snupkg' + packagesToPush: '$(Build.ArtifactStagingDirectory)/packages/**/*.nupkg' nuGetFeedType: 'external' publishFeedCredentials: 'NuGet' allowPackageConflicts: true