embedding-pdb-in-exe

PDB Embedded Debugging Symbols

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "embedding-pdb-in-exe" with this command: npx skills add christian289/dotnet-with-claudecode/christian289-dotnet-with-claudecode-embedding-pdb-in-exe

PDB Embedded Debugging Symbols

Embed PDB files into EXE/DLL for stack traces with source locations without separate symbol files.

Quick Start

<PropertyGroup> <DebugType>embedded</DebugType> </PropertyGroup>

Recommended Configuration

<PropertyGroup> <DebugType>embedded</DebugType> <DebugSymbols>true</DebugSymbols> <Deterministic>true</Deterministic> <PathMap>$(MSBuildProjectDirectory)=.</PathMap> </PropertyGroup>

Command Line

Build

dotnet build -c Release -p:DebugType=embedded

Publish (single-file)

dotnet publish -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -p:DebugType=embedded

DebugType Options

Option PDB Location Use Case

full

Separate file Development

pdbonly

Separate file Release (default)

portable

Separate file Cross-platform

embedded

Inside EXE Distribution

none

None Security critical

Additional Resources

  • Source Link Integration: See SOURCE-LINK.md

  • Advanced Configuration: See ADVANCED.md

  • MSBuild DebugType Reference

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

converting-html-css-to-wpf-xaml

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

publishing-wpf-apps

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

using-xaml-property-element-syntax

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

managing-styles-resourcedictionary

No summary provided by upstream source.

Repository SourceNeeds Review