14 lines
271 B
Plaintext
14 lines
271 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
tools {
|
||
|
dotnetsdk 'dotnet6'
|
||
|
}
|
||
|
stages {
|
||
|
stage('Build') {
|
||
|
steps {
|
||
|
echo 'Building..'
|
||
|
sh 'dotnet publish --configuration Release --output PUBLISH'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|