From 140f8bbf5394341d509aa3517f312438faef3c30 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 25 Apr 2022 01:13:41 -0500 Subject: [PATCH] Pipeline now publishes windows version as well. --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index 6242ded..6d74064 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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: true archiveArtifacts artifacts: 'Props/bin/Release/**/publish/Props*', excludes: 'Props.Shop.Framework.*', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true } }