From f7d35933d4be9410ba61c1071b8ba04c4748cf82 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 6 Mar 2026 12:41:54 +0100 Subject: [PATCH] Update dotnet restore command to include project path Specify the project directory for the dotnet restore command. --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index df5d6e8..2b0a6e6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -21,7 +21,7 @@ jobs: with: dotnet-version: 8.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore ./src - name: Build run: dotnet build ./src --no-restore - name: Test