Skip to content

Commit

Permalink
Merge pull request #4939 from RomainHautefeuille/patch-1
Browse files Browse the repository at this point in the history
Add searchNuGetOrgSymbolServer documentation
  • Loading branch information
JoeRobich authored Dec 15, 2021
2 parents efc6a1f + bccc8e0 commit 7095cda
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions debugger-launchjson.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ The `symbolOptions` element allows customization of how the debugger searches fo
"https://my-companies-symbols-server"
],
"searchMicrosoftSymbolServer": true,
"searchNuGetOrgSymbolServer": true,
"cachePath": "/symcache",
"moduleFilter": {
"mode": "loadAllButExcluded",
Expand All @@ -273,6 +274,8 @@ The `symbolOptions` element allows customization of how the debugger searches fo

**searchMicrosoftSymbolServer**: If `true` the Microsoft Symbol server (https://msdl.microsoft.com/download/symbols) is added to the symbols search path. If unspecified, this option defaults to `false`.

**searchNuGetOrgSymbolServer**: If `true` the Nuget.org Symbol server (https://symbols.nuget.org/download/symbols) is added to the symbols search path. If unspecified, this option defaults to `false`.

**cachePath**": Directory where symbols downloaded from symbol servers should be cached. If unspecified, on Windows the debugger will default to %TEMP%\\SymbolCache, and on Linux and macOS the debugger will default to ~/.dotnet/symbolcache.

**moduleFilter.mode**: This value is either `"loadAllButExcluded"` or `"loadOnlyIncluded"`. In `"loadAllButExcluded"` mode, the debugger loads symbols for all modules unless the module is in the 'excludedModules' array. In `"loadOnlyIncluded"` mode, the debugger will not attempt to load symbols for ANY module unless it is in the 'includedModules' array, or it is included through the 'includeSymbolsNextToModules' setting.
Expand Down

0 comments on commit 7095cda

Please sign in to comment.