2025-04-29 09:34:57 +02:00

11 lines
149 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'dotnet build'
}
}
}
}