Files
EnvelopeGenerator/EnvelopeGenerator.Server/EnvelopeGenerator.Server/Jenkinsfile
TekH 27940f5d34 Refactor project structure in solution
Replaced "EnvelopeGenerator.WebUI" with "EnvelopeGenerator.Server" and "EnvelopeGenerator.WebUI.Client" with "EnvelopeGenerator.Server.Client". Updated project entries, solution configuration platforms, and nested projects to reflect these changes.
2026-06-22 15:17:34 +02:00

11 lines
149 B
Groovy

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