From b1747012bb024927eb11122d9a0ea7ad0b800297 Mon Sep 17 00:00:00 2001 From: Romain Hautefeuille Date: Thu, 9 Dec 2021 22:24:16 +0100 Subject: [PATCH] Add searchNuGetOrgSymbolServer documentation --- debugger-launchjson.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debugger-launchjson.md b/debugger-launchjson.md index 90280ec99..720708b07 100644 --- a/debugger-launchjson.md +++ b/debugger-launchjson.md @@ -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", @@ -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.