Remove unnecessary parameter
This commit is contained in:
parent
a9c28a04b6
commit
2b73548b7a
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -10,16 +10,16 @@ pipeline {
|
|||
parallel {
|
||||
stage('Linux') {
|
||||
steps {
|
||||
sh 'dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true --no-restore --output Linux-x64/'
|
||||
sh 'dotnet publish -r linux-x64 -c Release -p:PublishTrimmed=true --self-contained true --no-restore --output Linux-x64/'
|
||||
sh 'mv Linux-x64/SupportChild Linux-x64/SupportChild-SC'
|
||||
sh 'dotnet publish -r linux-x64 -c Release -p:PublishSingleFile=true --self-contained false --no-restore --output Linux-x64/'
|
||||
sh 'dotnet publish -r linux-x64 -c Release --self-contained false --no-restore --output Linux-x64/'
|
||||
}
|
||||
}
|
||||
stage('Windows') {
|
||||
steps {
|
||||
sh 'dotnet publish -r win-x64 -c Release -p:PublishSingleFile=true -p:PublishTrimmed=true --self-contained true --no-restore --output Windows-x64/'
|
||||
sh 'dotnet publish -r win-x64 -c Release -p:PublishTrimmed=true --self-contained true --no-restore --output Windows-x64/'
|
||||
sh 'mv Windows-x64/SupportChild.exe Windows-x64/SupportChild-SC.exe'
|
||||
sh 'dotnet publish -r win-x64 -c Release -p:PublishSingleFile=true --self-contained false --no-restore --output Windows-x64/'
|
||||
sh 'dotnet publish -r win-x64 -c Release --self-contained false --no-restore --output Windows-x64/'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue