How to restore packages from Artifactory using YAML
问题 The guide here gives the example code below: - task: DotNetCoreCLI@2 inputs: command: restore projects: '**/*.csproj' feedsToUse: config nugetConfigPath: NuGet.config # Relative to root of the repository externalFeedCredentials: <Name of the NuGet service connection> but I'm struggling to know what is required in place of <Name of the NuGet service connection> or even NuGet.config . The Guide on Artifactory doesn't use YAML or even mention it so I don't know if it is even possible. My