From afc37f5426ac8df8b8d1b150cf0a09ddab62af2c Mon Sep 17 00:00:00 2001 From: jtalborough Date: Thu, 27 Feb 2025 19:07:48 -0500 Subject: [PATCH] fix: remove unnecessary IncludeSymbols and IncludeSource parameters from dotnet pack command in Docker workflow --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a5b42a54..6f09edbe 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -103,7 +103,7 @@ jobs: } - name: Pack Solution run: | - dotnet pack .\$($Env:SOLUTION_FILE).sln --configuration $env:BUILD_TYPE --output ./output /p:Version="${{ steps.setVersion.outputs.version }}" /p:IncludeSymbols=true /p:IncludeSource=true + dotnet pack .\$($Env:SOLUTION_FILE).sln --configuration $env:BUILD_TYPE --output ./output /p:Version="${{ steps.setVersion.outputs.version }}" # Ensure CPZ files are included in the package $cpzFiles = Get-ChildItem -Path . -Recurse | Where-Object { $_.Extension -eq ".cpz" }