From 1aab8eb4ce3bf7ef0420fa8c0abddb7a98ff1075 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:40:02 +0000 Subject: [PATCH 1/2] Initial plan From 846bae1ac4f4c8a856224fc9dd84109be580f847 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 2 Apr 2026 11:43:02 +0000 Subject: [PATCH 2/2] Add build step to ci.yml to ensure the entire solution builds successfully Agent-Logs-Url: https://github.com/dex3r/EasySourceGenerators/sessions/1f59a137-8797-47f2-a6a3-b8297d162636 Co-authored-by: dex3r <3155725+dex3r@users.noreply.github.com> --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82b0784..61e936d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,11 @@ jobs: - name: Restore dependencies run: dotnet restore EasySourceGenerators.sln + - name: Build + run: dotnet build EasySourceGenerators.sln --no-restore + - name: Test - run: dotnet test EasySourceGenerators.sln --no-restore --verbosity normal --collect:"XPlat Code Coverage" --logger "trx;LogFilePrefix=test-results" --results-directory ./coverage + run: dotnet test EasySourceGenerators.sln --no-build --verbosity normal --collect:"XPlat Code Coverage" --logger "trx;LogFilePrefix=test-results" --results-directory ./coverage - name: Upload coverage to Codecov uses: codecov/codecov-action@v5