Skip to content

Commit 25649ef

Browse files
committed
feat: enable symbol package generation in project
Added configuration to include portable debug symbols and generate .snupkg symbol packages during build. This facilitates debugging and improves NuGet package distribution.
1 parent feca472 commit 25649ef

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/GraphSharp.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2020
<PackageReadmeFile>README.md</PackageReadmeFile>
2121
<PackageIcon>logo.png</PackageIcon>
22+
<DebugType>portable</DebugType>
23+
<DebugSymbols>true</DebugSymbols>
24+
<AllowedOutputExtensionsInPackageBuildOutputFolder>.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
25+
<IncludeSymbols>true</IncludeSymbols>
26+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2227
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2328
</PropertyGroup>
2429

0 commit comments

Comments
 (0)