From wpf-dev-pack
Embeds PDB debugging symbols into .NET EXE/DLL files via MSBuild DebugType=embedded and dotnet publish. Use for single-file deployments, Source Link integration, and Release builds with source-level stack traces.
npx claudepluginhub christian289/dotnet-with-claudecode --plugin wpf-dev-packThis skill uses the workspace's default tool permissions.
Embed PDB files into EXE/DLL for stack traces with source locations without separate symbol files.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Embed PDB files into EXE/DLL for stack traces with source locations without separate symbol files.
<PropertyGroup>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<Deterministic>true</Deterministic>
<PathMap>$(MSBuildProjectDirectory)=.</PathMap>
</PropertyGroup>
# 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
| 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 |