1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-27 16:51:04 +02:00
MLEM/Jenkinsfile

13 lines
234 B
Text
Raw Normal View History

2020-02-17 17:24:13 +01:00
pipeline {
agent any
stages {
stage('Build Projects') {
steps {
sh 'dotnet build **/MLEM*.csproj'
sh 'dotnet build **/Demos.csproj'
sh 'dotnet build **/Demos.DesktopGL.csproj'
}
}
}
}