We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc037e commit 93bdf8bCopy full SHA for 93bdf8b
1 file changed
.github/workflows/nuget-publish.yml
@@ -18,10 +18,16 @@ jobs:
18
dotnet-version: '10.0.x' # 可根据你的项目适当调整
19
20
- name: Restore dependencies
21
- run: dotnet restore src
+ run: |
22
+ for proj in src/**/*.csproj; do
23
+ dotnet restore "$proj"
24
+ done
25
26
- name: Build
- run: dotnet build src --configuration Release --no-restore
27
28
29
+ dotnet build "$proj" --configuration Release --no-restore
30
31
32
- name: Pack all projects in src
33
run: |
0 commit comments