The scenario that I would like to do is.
- Commit to github
- If project version didn't change -> do nothing
- if project version changed -> trigger build configuration steps.
- The build configuration steps will build the
.nupkgfile and publish to the build-in nuget feed.
I want to use Nuget dependency trigger to detect the package version change then trigger the build configuration to publish new package to the build-in nuget feed in Teamcity.
The build-in nuget feed has http basic authentication.
The build step with setting up the Nuget Feed credencial works fine.
But Nuget dependency trigger always show up with error message as below
Failed to check for package versions. Could not connect to the feed specified at 'http://<url>/httpAuth/app/nuget/feed/_Root/<project_nam>e/v3/index.json'.
Please verify that the package source (located in the Package Manager Settings) is valid and ensure your network connectivity.
the offical document explain it so simple.
- authentication issues might occur
- Specify the credentials to access NuGet feed if required-
Does anyone have idea?
teamcity 2018.2.4
PS Thanks for Nadia. I do some modification to clarify my description. Sorry that it's not my native language.