From 31517a80bcc9444cb52a19b9da93d837d91ca5ae Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 12 Sep 2025 21:47:47 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #22 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/Scripts/issues/22 --- 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..284096d --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/Scripts/issues/22 +Your prepared branch: issue-22-d449aa6d +Your prepared working directory: /tmp/gh-issue-solver-1757702865609 + +Proceed. \ No newline at end of file From 62944a8f6c152552f5a035fbe9156358708ef5b2 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 12 Sep 2025 21:50:48 +0300 Subject: [PATCH 2/3] Update RemoveCppProjectsInSln.sh to look for .sln files in csharp/ directory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed find command to search in ./csharp directory instead of root - This addresses the second part of issue #22: updating scripts that expect .sln files in repository root - Scripts now work correctly after .sln files have been moved to csharp/ directory 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CodeChanges/RemoveCppProjectsInSln.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeChanges/RemoveCppProjectsInSln.sh b/CodeChanges/RemoveCppProjectsInSln.sh index 4dd080f..eba8ce8 100644 --- a/CodeChanges/RemoveCppProjectsInSln.sh +++ b/CodeChanges/RemoveCppProjectsInSln.sh @@ -1,3 +1,3 @@ #!/bin/bash -find . -type f -name "*.sln" -exec perl -0777pi -e "s~^Project.*cpp.*$\s~~gm" {} \; +find ./csharp -type f -name "*.sln" -exec perl -0777pi -e "s~^Project.*cpp.*$\s~~gm" {} \; From c86c4632f6850fae30afecec3f9a3dfa5eb989ec Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 12 Sep 2025 21:51:37 +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 284096d..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/Scripts/issues/22 -Your prepared branch: issue-22-d449aa6d -Your prepared working directory: /tmp/gh-issue-solver-1757702865609 - -Proceed. \ No newline at end of file