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