From d37d6976251d56eba7551e9814567997dea46d16 Mon Sep 17 00:00:00 2001 From: Ionite Date: Fri, 15 Sep 2023 15:49:03 -0400 Subject: [PATCH] maybe fix build? --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3eea6058..ca44ca4b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,9 +13,9 @@ node("Diligence") { try { stage('Build') { - sh "dotnet build StabilityMatrix.Core -r linux-x64 --no-self-contained -c Release -p:ExcludeAssets=\"all\"" - sh "dotnet build StabilityMatrix.Avalonia -r linux-x64 --no-self-contained -c Release -p:ExcludeAssets=\"all\"" - sh "dotnet build StabilityMatrix.Tests --no-self-contained -r linux-x64 -c Release -p:ExcludeAssets=\"all\"" + sh "dotnet build StabilityMatrix.Core -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained" + sh "dotnet build StabilityMatrix.Avalonia -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained" + sh "dotnet build StabilityMatrix.Tests -r linux-x64 -c Release -p:ExcludeAssets=\"all\" -p:SatelliteResourceLanguages=\"en\" --no-self-contained" } stage('Test') {