File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 5454 shell : bash
5555 working-directory : ${{ matrix.project }}
5656 run : |
57- find . -name '*.nupkg' | grep -v '.sources .nupkg' | parallel --jobs 0 'dotnet nuget push {} --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json'
57+ find . -name '*.nupkg' -not -name '*.symbols .nupkg' | parallel --jobs 0 'dotnet nuget push {} --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json'
Original file line number Diff line number Diff line change 2828 <IncludeBuildOutput >true</IncludeBuildOutput >
2929 <GenerateDocumentationFile >true</GenerateDocumentationFile >
3030 <NoWarn >$(NoWarn);CS1591</NoWarn >
31+
32+ <!-- Symbol package for debugging -->
33+ <IncludeSymbols >true</IncludeSymbols >
34+ <SymbolPackageFormat >snupkg</SymbolPackageFormat >
3135 </PropertyGroup >
3236
3337 <!-- Bundle source generator with main package -->
You can’t perform that action at this time.
0 commit comments