diff --git a/Jenkinsfile b/Jenkinsfile index ddb28c4..873a2d5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ pipeline { stages { stage("Restore") { steps { - dotnetRestore configuration: 'Release', project: "Props.Shop/Props.Shop.sln" + dotnetRestore project: "Props.Shop/Props.Shop.sln" dotnetRestore project: "Props.Shop/Props.Shop.Tests.sln" } } @@ -38,7 +38,7 @@ pipeline { } stage("Publish") { steps { - dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', sdk: 'Default .NET SDK' + dotnetPublish noRestore: true, project: 'Props', sdk: 'Default .NET SDK' archiveArtifacts artifacts: 'Props/bin/Release/**/publish/Props*', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true } }