From e0c5032b77848d88fb509305587f7550549f321d Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Thu, 23 Oct 2025 11:55:02 -0400 Subject: [PATCH] Fix dotnet pack command by removing NoDefaultExcludes --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0af7405..2c3dcc3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: run: dotnet test "${{ env.SOLUTION_FILE }}" --configuration Release --no-build --no-restore - name: Pack - run: dotnet pack "${{ env.NUSPEC_FILE }}" -NoDefaultExcludes --configuration Release --no-build --no-restore --output "${{ env.PACK_OUTPUT }}" + run: dotnet pack "${{ env.NUSPEC_FILE }}" --configuration Release --no-build --no-restore --output "${{ env.PACK_OUTPUT }}" - name: NuGet login (OIDC -> temp API key) uses: NuGet/login@v1