'Automation Testing in Docker Containers Triggering from Jenkins
I'm running the Automation tests on Docker Container to release some pressure on windows agents. While I tried to restore the NuGet packages with below Jenkins CI/CD pipeline script
stage('Dotnet Restore') {
steps {
echo delimiter+' Dotnet Restore '+start
sh "/tools/dotnet/5.0.400/dotnet restore ${solution} --configfile NuGet.Config"
echo delimiter+' Dotnet Restore '+end
}
}
in console output I'm getting following error error MSB4006: There is a circular dependency in the target dependency graph involving target "_GenerateRestoreProjectPathWalk".
Can some one guide me to how to find solution for the issue.
The same bat script and same shell script is working fine with other models
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
