-
Notifications
You must be signed in to change notification settings - Fork 15
Debugging referenced NBB assemblies from target applications
fraliv13 edited this page Aug 19, 2021
·
2 revisions
The symbol files (pdb) are packaged in separate nuget symbol packages (*.snupkg). In order to use them for debugging you must use the nuget symbol server where they are published.
Additionally during debugging you can access the original source code files from github via SourceLink.
- In Visual Studio, open
Tools > Options > Debugging > Symbols
.- Under
Symbol file (.pdb) locations
, select the checkbox forNuGet.org Symbol Server
. - (OPTIONAL) For performance reasons select
Load only specified modules
and enterNBB.*
- Under
- In Visual studio open
Tools > Options > Debugging > General
- Ensure that
Enable Source Link support
is enabled
- Ensure that
- In Visual studio open
Tools > Options > Debugging > General
- Ensure that
Enable Just My Code
is disabled
- Ensure that