Added win-x64 artifact.

This commit is contained in:
Harrison Deng 2022-04-25 01:51:39 -05:00
parent f82de591c8
commit f09b59c500

1
Jenkinsfile vendored
View File

@ -40,6 +40,7 @@ pipeline {
stage("Publish") {
steps {
dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', sdk: 'Default .NET SDK'
dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', runtime: 'win-x64', sdk: 'Default .NET SDK', selfContained: false
archiveArtifacts artifacts: 'Props/bin/Release/**/publish/Props*', excludes: '**/Props.Shop.Framework.*', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}