diff --git a/Jenkinsfile b/Jenkinsfile index 3199a00..c8a7696 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,9 @@ pipeline { stages { stage('Build Projects') { steps { - sh 'dotnet build **/MLEM*.csproj' + sh '''for i in **/MLEM*.csproj; do + dotnet build $i +done''' sh 'dotnet build **/Demos.csproj' sh 'dotnet build **/Demos.DesktopGL.csproj' }