Remove linux-x64 from solution build; let publish handle RID build

This commit is contained in:
2026-05-04 21:56:41 -04:00
parent 1392ddccda
commit be5717ebe2
Vendored
+2 -2
View File
@@ -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'
}
}