Reconfigured project to publish as a single file.

This commit is contained in:
2022-04-24 18:31:21 -05:00
parent 1d35e8a838
commit 8abd75506c
3 changed files with 75 additions and 8 deletions

4
Jenkinsfile vendored
View File

@@ -41,7 +41,9 @@ pipeline {
}
stage("Publish") {
steps {
dotnetPublish configuration: 'Release', project: 'Props', selfContained: false, unstableIfWarnings: true
// TODO: Archive things.
dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', runtime: 'win-x64', sdk: 'Default .NET SDK'
dotnetPublish configuration: 'Release', noRestore: true, project: 'Props', runtime: 'linux-x64', sdk: 'Default .NET SDK'
}
}
}