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 42cca33 commit 9d7f58aCopy full SHA for 9d7f58a
.github/workflows/dev.yml
@@ -317,7 +317,25 @@ jobs:
317
echo "Listing packages.lock.json files:"
318
find . -name "packages.lock.json" -type f -print
319
320
-
+ - name: Clean Solution
321
+ run: |
322
+ echo "Cleaning the solution..."
323
+ dotnet clean GitPageBlazorWASM.sln
324
+
325
+ - name: Restore NuGet Packages
326
327
+ echo "Restoring NuGet packages..."
328
+ dotnet restore GitPageBlazorWASM.sln
329
330
+ - name: Build Solution
331
332
+ echo "Building the solution..."
333
+ dotnet build GitPageBlazorWASM.sln -c Release
334
335
+ - name: Debug Package References
336
337
+ echo "Debugging package references..."
338
+ dotnet list GitPageBlazorWASM.sln package
339
340
341
0 commit comments