We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29fe939 commit 1f418d4Copy full SHA for 1f418d4
.github/workflows/build-and-release.yml
@@ -44,12 +44,14 @@ jobs:
44
- name: Create NuGet packages
45
if: github.event_name != 'pull_request'
46
run: |
47
- dotnet pack **/**/*.csproj \
48
- --configuration ${{ env.BuildConfiguration }} \
49
- --no-build \
50
- --output ./artifacts \
51
- -p:PackageVersion=${{ env.PackageVersion }} \
52
- --include-symbols
+ for project in src/**/*.csproj; do
+ dotnet pack "$project" \
+ --configuration ${{ env.BuildConfiguration }} \
+ --no-build \
+ --output ./artifacts \
+ -p:PackageVersion=${{ env.PackageVersion }} \
53
+ --include-symbols
54
+ done
55
shell: bash
56
57
- name: Copy release notes
0 commit comments