POS_Sprint_1 #1

Merged
s426229 merged 16 commits from POS_Sprint_1 into master 2020-12-03 19:53:04 +01:00
Showing only changes of commit 500fee0b91 - Show all commits

6
Jenkinsfile vendored
View File

@ -5,21 +5,21 @@ pipeline {
stage('Restore') {
steps {
dir('Serwer') {
bat "dotnet restore"
sh "dotnet restore"
}
}
}
stage('Clean') {
steps {
dir('Serwer') {
bat "dotnet clean"
sh "dotnet clean"
}
}
}
stage('Build') {
steps {
dir('Serwer') {
bat "dotnet build --configuration Relase"
sh "dotnet build --configuration Relase"
}
}
}