15 lines
No EOL
215 B
Groovy
15 lines
No EOL
215 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Setup Dependencies') {
|
|
steps {
|
|
sh 'dotnet restore'
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
sh 'dotnet build -c Release'
|
|
}
|
|
}
|
|
}
|
|
} |