From 8cdc7bac168caadda1921ac6510d9fad25358d5b Mon Sep 17 00:00:00 2001 From: mika kuns Date: Fri, 24 Apr 2026 19:43:12 +0200 Subject: [PATCH] fix(ci): build test csproj instead of .slnx for .NET 8 runner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .slnx requires .NET 9 SDK / MSBuild 17.8+. The Gitea runner has only .NET 8, so build the test project directly — its ProjectReference transitively builds ClaudeMailbox.csproj. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c632f46..8c91ff2 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: run: | set -euo pipefail export PATH="$DOTNET_ROOT:$PATH" - dotnet build ClaudeMailbox.slnx -c Release + dotnet build tests/ClaudeMailbox.Tests/ClaudeMailbox.Tests.csproj -c Release - name: Test run: |