From f1977cc81b184b919156bd4ce681b18877cefedf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 11 Apr 2026 15:18:42 +0000 Subject: [PATCH 1/3] Initial plan From 08e50d9b86ee3f393e4f421ee4357ea466a16896 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 11 Apr 2026 15:19:40 +0000 Subject: [PATCH 2/3] Add msbuild step to build Detours after cmake in workflow Agent-Logs-Url: https://github.com/theXappy/RemoteNET/sessions/7f102ea9-a0d1-4003-9ba6-db9897be90de Co-authored-by: theXappy <10898152+theXappy@users.noreply.github.com> --- .github/workflows/dotnet-desktop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 113f949a..888b6889 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -50,6 +50,7 @@ jobs: mkdir detours_build cd detours_build cmake ..\detours.net + msbuild /t:restore,build ALL_BUILD.vcxproj # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application From 4ef10229dcf91659599c0336c5669cda6744be2e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 11 Apr 2026 15:35:09 +0000 Subject: [PATCH 3/3] Map Release->RelWithDebInfo and Debug->Debug for Detours msbuild configuration Agent-Logs-Url: https://github.com/theXappy/RemoteNET/sessions/5f4798dd-3bf8-4689-9c1f-6b07f3e4e79d Co-authored-by: theXappy <10898152+theXappy@users.noreply.github.com> --- .github/workflows/dotnet-desktop.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 888b6889..73d48cd3 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -50,7 +50,9 @@ jobs: mkdir detours_build cd detours_build cmake ..\detours.net - msbuild /t:restore,build ALL_BUILD.vcxproj + msbuild /t:restore,build ALL_BUILD.vcxproj /p:Configuration=$env:Detours_Configuration + env: + Detours_Configuration: ${{ matrix.configuration == 'Release' && 'RelWithDebInfo' || matrix.configuration }} # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application