From be5717ebe2eae2b53ed5dadd0a99a6f64e43554c Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Mon, 4 May 2026 21:56:41 -0400 Subject: [PATCH] Remove linux-x64 from solution build; let publish handle RID build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f079d5d..06ba6a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,7 +20,7 @@ pipeline { stage('Restore & Build') { steps { bat 'dotnet restore PowderCoatingApp.sln' - bat 'dotnet build PowderCoatingApp.sln -c Release --no-restore -r linux-x64' + bat 'dotnet build PowderCoatingApp.sln -c Release --no-restore' } } @@ -35,7 +35,7 @@ pipeline { stage('Publish') { steps { - bat 'dotnet publish src\\PowderCoating.Web\\PowderCoating.Web.csproj -c Release --no-build -r linux-x64 --self-contained false -o publish' + bat 'dotnet publish src\\PowderCoating.Web\\PowderCoating.Web.csproj -c Release -r linux-x64 --self-contained false -o publish' } }