From 389dfaf1fceb5a6d7edffe0c7f5def8228187bd0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 18:01:10 +0000 Subject: [PATCH 1/2] Initial plan From 1ee65aee90b36d23fa7d8dc2104a8f81f1cf92f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 27 Dec 2025 18:03:18 +0000 Subject: [PATCH 2/2] Fix test project path in release.yaml Co-authored-by: Chris-Wolfgang <210299580+Chris-Wolfgang@users.noreply.github.com> --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4cdaa83..649f4c4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -49,7 +49,7 @@ jobs: echo "Building test project for cross-platform targets..." for fw in netcoreapp3.1 net50 net6.0 net7.0 net8.0 net9.0 net10.0; do - dotnet build tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \ + dotnet build tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \ --no-restore \ --configuration Release \ --framework "$fw" || true @@ -70,7 +70,7 @@ jobs: if: runner.os != 'Windows' shell: bash run: | - dotnet test tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \ + dotnet test tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj \ --configuration Release \ --framework net8.0 \ --no-build \ @@ -82,7 +82,7 @@ jobs: if: runner.os == 'Windows' shell: pwsh run: | - dotnet test tests/Wolfgang.Etl.Abstractions.Tests/Wolfgang.Etl.Abstractions.Tests.Unit.csproj ` + dotnet test tests/Wolfgang.Etl.Abstractions.Tests.Unit/Wolfgang.Etl.Abstractions.Tests.Unit.csproj ` --configuration Release ` --no-build ` --logger "trx" `