From: Sangwook Kim Date: Mon, 10 Feb 2020 04:49:40 +0000 (+0900) Subject: [Tizen] Disable Microsoft symbol server by default (#17) X-Git-Tag: submit/tizen/20220302.040122~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c44c4d1303f45a278b2fc026bbdcc18baa557112;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git [Tizen] Disable Microsoft symbol server by default (#17) --- diff --git a/src/Tools/dotnet-dump/Analyzer.cs b/src/Tools/dotnet-dump/Analyzer.cs index c088ed697..38bd8ae3b 100644 --- a/src/Tools/dotnet-dump/Analyzer.cs +++ b/src/Tools/dotnet-dump/Analyzer.cs @@ -102,8 +102,8 @@ namespace Microsoft.Diagnostics.Tools.Dump _target.ServiceProvider.AddServiceFactory(() => new SOSHost(_contextService.Services)); - // Automatically enable symbol server support, default cache and search for symbols in the dump directory - _symbolService.AddSymbolServer(msdl: true, symweb: false, symbolServerPath: null, authToken: null, timeoutInMinutes: 0); + // Automatically enable symbol server support + _symbolService.AddSymbolServer(msdl: false, symweb: false, symbolServerPath: null, authToken: null, timeoutInMinutes: 0); _symbolService.AddCachePath(_symbolService.DefaultSymbolCache); _symbolService.AddDirectoryPath(Path.GetDirectoryName(dump_path.FullName));