From 06785b674f78dd952f67300238b95a022c7b9ca1 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 18:50:55 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #19 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/Interfaces/issues/19 --- 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..3a96057 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/Interfaces/issues/19 +Your prepared branch: issue-19-41288876 +Your prepared working directory: /tmp/gh-issue-solver-1757519450900 + +Proceed. \ No newline at end of file From 6f2318c6e12cc384aefe04ca298a63e4ebb3ebe4 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 18:51:13 +0300 Subject: [PATCH 2/3] Remove CLAUDE.md - PR created successfully --- 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 3a96057..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/Interfaces/issues/19 -Your prepared branch: issue-19-41288876 -Your prepared working directory: /tmp/gh-issue-solver-1757519450900 - -Proceed. \ No newline at end of file From dbd46f0e095251837c96d22e11d76079adc61bb6 Mon Sep 17 00:00:00 2001 From: konard Date: Wed, 10 Sep 2025 18:55:27 +0300 Subject: [PATCH 3/3] Add embedded symbols support for GitHub Package Registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Enable embedded debugging symbols in C# project with DebugType=embedded - Update GitHub Actions workflow to include symbols during pack - Bump version to 0.5.1 for new release - Update package release notes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/csharp.yml | 2 +- csharp/Platform.Interfaces/Platform.Interfaces.csproj | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index 6ceac78..a5b414d 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -45,7 +45,7 @@ jobs: - name: Publish NuGet package to GitHub Package Registry run: | dotnet build -c Release - dotnet pack -c Release + dotnet pack -c Release --include-symbols dotnet nuget add source https://nuget.pkg.github.com/linksplatform/index.json --name GitHub --username linksplatform --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text dotnet nuget push **/*.nupkg --source GitHub --skip-duplicate pusnToNuget: diff --git a/csharp/Platform.Interfaces/Platform.Interfaces.csproj b/csharp/Platform.Interfaces/Platform.Interfaces.csproj index 6a558a2..e420800 100644 --- a/csharp/Platform.Interfaces/Platform.Interfaces.csproj +++ b/csharp/Platform.Interfaces/Platform.Interfaces.csproj @@ -4,7 +4,7 @@ LinksPlatform's Platform.Interfaces Class Library Konstantin Diachenko Platform.Interfaces - 0.5.0 + 0.5.1 Konstantin Diachenko net8 Platform.Interfaces @@ -22,8 +22,9 @@ true true snupkg + embedded latest - Update target framework from net7 to net8. + Add embedded symbols support for GitHub Package Registry debugging. enable