Merge branch 'develop' of dev.sys.reslate.xyz:ydeng/props into develop

This commit is contained in:
Harrison Deng 2022-04-25 00:43:59 -05:00
commit 093670385e

8
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"
}
}
@ -27,7 +27,7 @@ pipeline {
stages {
stage("Restore") {
steps {
dotnetRestore configuration: 'Release', project: "Props"
dotnetRestore project: "Props"
dotnetRestore project: "Props.Tests"
}
}
@ -38,8 +38,8 @@ pipeline {
}
stage("Publish") {
steps {
dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', sdk: 'Default .NET SDK'
archiveArtifacts artifacts: 'Props/bin/Release/**/publish/Props*', excludes: fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
dotnetPublish noRestore: true, project: 'Props', sdk: 'Default .NET SDK'
archiveArtifacts artifacts: 'Props/bin/Release/**/publish/Props*', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}
}