Add GeneratePackageOnBuild=false to build script in CI pipeline

This commit is contained in:
MaddoScientisto 2026-02-15 19:30:21 +01:00
commit 5aae5f6486

View file

@ -16,7 +16,7 @@ build:
stage: build stage: build
script: script:
- dotnet restore src/AIFotoONLUS.Core/AIFotoONLUS.Core.csproj - dotnet restore src/AIFotoONLUS.Core/AIFotoONLUS.Core.csproj
- dotnet build src/AIFotoONLUS.Core/AIFotoONLUS.Core.csproj --configuration Release --no-restore - dotnet build src/AIFotoONLUS.Core/AIFotoONLUS.Core.csproj --configuration Release --no-restore /p:GeneratePackageOnBuild=false
artifacts: artifacts:
paths: paths:
- src/AIFotoONLUS.Core/bin/** - src/AIFotoONLUS.Core/bin/**