pipeline { agent any stages { stage('nuget'){ steps{ sh "ls" dotnetPack(outputDirectory: "./", project: "Deployment/Deployment.csproj") dotnetNugetPublish() } } } }