Removed invalid parameters in 'Jenkinsfile'.
This commit is contained in:
parent
e13a14fb2e
commit
9192e9b0f8
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
@ -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
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user