Some checks failed
AppStd/WorkFlow/pipeline/head There was a failure building this commit
11 lines
149 B
Groovy
11 lines
149 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'dotnet build'
|
|
}
|
|
}
|
|
}
|
|
}
|