Removed invalid parameters in 'Jenkinsfile'.

This commit is contained in:
Harrison Deng 2022-04-25 00:05:19 -05:00
parent e13a14fb2e
commit 9192e9b0f8

4
Jenkinsfile vendored
View File

@ -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
}
}