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