Skip to content

Commit 9d7f58a

Browse files
committed
fix(nuke): clean build
1 parent 42cca33 commit 9d7f58a

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/dev.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,25 @@ jobs:
317317
echo "Listing packages.lock.json files:"
318318
find . -name "packages.lock.json" -type f -print
319319
320-
320+
- name: Clean Solution
321+
run: |
322+
echo "Cleaning the solution..."
323+
dotnet clean GitPageBlazorWASM.sln
324+
325+
- name: Restore NuGet Packages
326+
run: |
327+
echo "Restoring NuGet packages..."
328+
dotnet restore GitPageBlazorWASM.sln
329+
330+
- name: Build Solution
331+
run: |
332+
echo "Building the solution..."
333+
dotnet build GitPageBlazorWASM.sln -c Release
334+
335+
- name: Debug Package References
336+
run: |
337+
echo "Debugging package references..."
338+
dotnet list GitPageBlazorWASM.sln package
321339
322340
323341

0 commit comments

Comments
 (0)