add Jenkinsfile
Some checks failed
AppStd/WorkFlow/pipeline/head There was a failure building this commit

This commit is contained in:
Developer 02 2025-05-22 16:03:12 +02:00
parent 99237cbecc
commit 3832351dd1

10
WorkFlow.API/Jenkinsfile vendored Normal file
View File

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