Skip to content

Commit 06c9c39

Browse files
authored
Merge pull request #135 from linksplatform/issue-19-41288876
Publish Symbols to GitHub Package Registry
2 parents 6256a38 + dbd46f0 commit 06c9c39

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/csharp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Publish NuGet package to GitHub Package Registry
4646
run: |
4747
dotnet build -c Release
48-
dotnet pack -c Release
48+
dotnet pack -c Release --include-symbols
4949
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
5050
dotnet nuget push **/*.nupkg --source GitHub --skip-duplicate
5151
pusnToNuget:

csharp/Platform.Interfaces/Platform.Interfaces.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>LinksPlatform's Platform.Interfaces Class Library</Description>
55
<Copyright>Konstantin Diachenko</Copyright>
66
<AssemblyTitle>Platform.Interfaces</AssemblyTitle>
7-
<VersionPrefix>0.5.0</VersionPrefix>
7+
<VersionPrefix>0.5.1</VersionPrefix>
88
<Authors>Konstantin Diachenko</Authors>
99
<TargetFramework>net8</TargetFramework>
1010
<AssemblyName>Platform.Interfaces</AssemblyName>
@@ -22,8 +22,9 @@
2222
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2323
<IncludeSymbols>true</IncludeSymbols>
2424
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
25+
<DebugType>embedded</DebugType>
2526
<LangVersion>latest</LangVersion>
26-
<PackageReleaseNotes>Update target framework from net7 to net8.</PackageReleaseNotes>
27+
<PackageReleaseNotes>Add embedded symbols support for GitHub Package Registry debugging.</PackageReleaseNotes>
2728
<Nullable>enable</Nullable>
2829
</PropertyGroup>
2930

0 commit comments

Comments
 (0)