From 6b9e156af4d7c499d2a29f27b3e7abec2235ec6e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:16:19 +0000 Subject: [PATCH 1/2] Initial plan From fc359dff7e4534e564062bd34c9ba80e4aa3f70c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 6 Oct 2025 18:25:37 +0000 Subject: [PATCH 2/2] Fix copilot-setup workflow by specifying solution file explicitly Co-authored-by: BenjaminMichaelis <22186029+BenjaminMichaelis@users.noreply.github.com> --- .github/actions/setup-dotnet/action.yml | 4 ++-- .github/workflows/LocalesTest.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-dotnet/action.yml b/.github/actions/setup-dotnet/action.yml index 01a84e32..af43bb64 100644 --- a/.github/actions/setup-dotnet/action.yml +++ b/.github/actions/setup-dotnet/action.yml @@ -30,9 +30,9 @@ runs: - name: Restore dependencies shell: bash - run: dotnet restore + run: dotnet restore EssentialCSharp.sln - name: Build if: ${{ inputs.build == 'true' }} shell: bash - run: dotnet build --no-restore \ No newline at end of file + run: dotnet build EssentialCSharp.sln --no-restore \ No newline at end of file diff --git a/.github/workflows/LocalesTest.yml b/.github/workflows/LocalesTest.yml index abe667e2..d4cf0468 100644 --- a/.github/workflows/LocalesTest.yml +++ b/.github/workflows/LocalesTest.yml @@ -51,8 +51,8 @@ jobs: echo "Printing date" date echo Restore dependencies - dotnet restore + dotnet restore EssentialCSharp.sln echo Build - dotnet build --no-restore + dotnet build EssentialCSharp.sln --no-restore echo Test dotnet test --no-build --no-restore --verbosity normal