fixing dotnet commands

This commit is contained in:
Andy Pack 2023-04-29 00:03:08 +01:00
parent 193ebd9f06
commit e0992b2ff2
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

View File

@ -17,8 +17,8 @@ pipeline {
}
}
steps {
dotnetRestore "Selector.Core.sln"
dotnetBuild "Selector.Core.sln"
dotnetRestore project: "Selector.Core.sln"
dotnetBuild project: "Selector.Core.sln"
}
}
@ -44,7 +44,7 @@ pipeline {
}
}
steps {
dotnetTest "Selector.Core.sln"
dotnetTest project: "Selector.Core.sln"
}
}
stage('Deploy') {