Skip to content

Commit 7110701

Browse files
committed
add steps to helps verify which projects are being restored and built
1 parent f99aa42 commit 7110701

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,17 @@ jobs:
2626
- name: Build all projects
2727
run: |
2828
find . -name "*.csproj" -print0 | xargs -0 -n1 dotnet build --no-restore --configuration Release
29+
30+
# - name: Restore dependencies
31+
# run: |
32+
# dotnet restore src/API/API.csproj
33+
# dotnet restore src/Application/Application.csproj
34+
# dotnet restore src/Domain/Domain.csproj
35+
# dotnet restore src/Infrastructure/Infrastructure.csproj
36+
37+
# - name: Build projects
38+
# run: |
39+
# dotnet build src/API/API.csproj --no-restore --configuration Release
40+
# dotnet build src/Application/Application.csproj --no-restore --configuration Release
41+
# dotnet build src/Domain/Domain.csproj --no-restore --configuration Release
42+
# dotnet build src/Infrastructure/Infrastructure.csproj --no-restore --configuration Release

0 commit comments

Comments
 (0)