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