Removed sdk selector from pipeline.

This commit is contained in:
Harrison Deng 2022-04-25 02:41:31 -05:00
parent 2069b38dbd
commit 1a3a9e00e7

4
Jenkinsfile vendored
View File

@ -5,8 +5,8 @@ pipeline {
stages {
stage("Restore") {
steps {
dotnetRestore project: "Props.Shop/Props.Shop.sln", sdk: 'System'
dotnetRestore project: "Props.Shop/Props.Shop.Tests.sln", sdk: 'System'
dotnetRestore project: "Props.Shop/Props.Shop.sln"
dotnetRestore project: "Props.Shop/Props.Shop.Tests.sln"
}
}
stage("Test") {