I have a question using the hosted (free) AzureDevops pipelines. I have a small .NET Core project which I want to create an Azure Devops pipeline where the following is done
I have done two changes like below,
In the FeedSetting Permissions, selected "Allow project-scoped builds"
The YML file updated for NuGetCommand like below,
task: NuGetCommand@2
displayName: 'Publish NuGet package'
inputs:
command: push
feedsToUse: 'select'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: 'Space Game - web - Dependencies/Tailspin.SpaceGame.Web.Models'
allowPackageConflicts: true
And the issue is resolved now...
Thank you guys...
~KC