I have multiple projects under a solution,
ProjectA.csproj projectB.csproj projectC.csproj
I have created a YAML CI build pipeline for this sol
Add the allowPackageConflicts input. It allows publish of just a single project in the solution. Only projects with an updated version number is published.
# publish to artifacts: - task: NuGetCommand@2 inputs: command: 'push' allowPackageConflicts: true