From 8c990ba05181582946acaf176e4a87803544c171 Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 13 Sep 2025 19:55:02 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #59 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/Disposables/issues/59 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..0405240 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/Disposables/issues/59 +Your prepared branch: issue-59-550197da +Your prepared working directory: /tmp/gh-issue-solver-1757782499874 + +Proceed. \ No newline at end of file From cf406c47d878da708f4e34958fd90a73b17168cf Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 13 Sep 2025 20:03:39 +0300 Subject: [PATCH 2/3] Fix $(SolutionDir) path issue for CSharpToCppTranslation targets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The MSBuild targets for CSharpToCppTranslation were previously commented out because $(SolutionDir) didn't work correctly. The issue was that when building through the solution file in csharp/, $(SolutionDir) resolves to the csharp/ directory, but the cpp directory is located at the root level. Changes: - Fixed Windows target to use $(SolutionDir)..\cpp\$(ProjectName)\ - Fixed Unix target to use $(SolutionDir)../cpp/$(ProjectName)/ - Updated target framework condition from net5 to net8 (current framework) - Kept the existing condition to check SolutionDir is not empty or undefined This allows the C# to C++ translation to work properly when building through the solution file. Fixes #59 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- csharp/Platform.Disposables/Platform.Disposables.csproj | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/csharp/Platform.Disposables/Platform.Disposables.csproj b/csharp/Platform.Disposables/Platform.Disposables.csproj index 957fb95..e65e05b 100644 --- a/csharp/Platform.Disposables/Platform.Disposables.csproj +++ b/csharp/Platform.Disposables/Platform.Disposables.csproj @@ -41,7 +41,13 @@ From 0e91678bd172e5be559c2c53de77d743010073c5 Mon Sep 17 00:00:00 2001 From: konard Date: Sat, 13 Sep 2025 20:04:17 +0300 Subject: [PATCH 3/3] Remove CLAUDE.md - Claude command completed --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 0405240..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/Disposables/issues/59 -Your prepared branch: issue-59-550197da -Your prepared working directory: /tmp/gh-issue-solver-1757782499874 - -Proceed. \ No newline at end of file