File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments