From b097329b26c16644af2ca6b08eb7ae9a3b82fc3b Mon Sep 17 00:00:00 2001 From: lifegpc Date: Mon, 27 Oct 2025 19:47:54 +0800 Subject: [PATCH] Restore packages first --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b61b5f04..1650dfd1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,9 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 - uses: microsoft/setup-msbuild@v1.1 - name: Build solution - run: msbuild GARBro.sln -p:Configuration=Release -p:Platform="Any CPU" + run: | + dotnet restore GARBro.sln + msbuild GARBro.sln -p:Configuration=Release -p:Platform="Any CPU" - name: Upload artifact uses: actions/upload-artifact@v4 with: