Test new config, fixed bugs

This commit is contained in:
Karol Górzyński 2020-12-03 17:28:14 +01:00
parent 734368df68
commit 356f0b2ea1

4
Jenkinsfile vendored
View File

@ -23,11 +23,13 @@ pipeline {
agent {
docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' }
}
stages ('Build') {
stages {
stage('Build') {
steps {
dir('SessionCompanion/SessionCompanion') {
sh 'dotnet build'
}
}
}
}
}