feat(Jenkinsfile): Als Beispiel erstellt

This commit is contained in:
Developer 02 2025-04-29 09:34:57 +02:00
parent c173814b8d
commit 3d1966a715

View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'dotnet build'
}
}
}
}