From 23bd252d0068338af75520e85f8561675c7ef456 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 05:26:15 +0000 Subject: [PATCH 1/2] Initial plan From 61901155eec7057eca3a38091dc8adbe35193f6b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 12 Nov 2025 05:30:09 +0000 Subject: [PATCH 2/2] Add shell: pwsh directive to build steps using PowerShell syntax Co-authored-by: Mika3578 <58137747+Mika3578@users.noreply.github.com> --- .github/workflows/build-emule.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-emule.yml b/.github/workflows/build-emule.yml index 04b124e9..b5e5942d 100644 --- a/.github/workflows/build-emule.yml +++ b/.github/workflows/build-emule.yml @@ -84,6 +84,7 @@ jobs: run: nuget restore "${{ env.SOLUTION_FILE_PATH }}" - name: Build Solution + shell: pwsh run: | # Note: TreatWarningsAsErrors not enabled to allow gradual warning cleanup $outDir = Join-Path "${{ env.BUILD_OUTPUT_ROOT }}" "${{ matrix.platform }}\${{ env.BUILD_CONFIGURATION }}\Binary\" @@ -189,6 +190,7 @@ jobs: - name: Build Debug Configuration working-directory: ${{ github.workspace }} + shell: pwsh run: | $outDir = Join-Path "${{ env.BUILD_OUTPUT_ROOT }}" "${{ matrix.platform }}\Debug\Binary\" msbuild /m `