Skip to content

Commit c21bf40

Browse files
committed
Microosft symbol server now defaults to SSL site.
Referense sources' symbol server defaults to SSL site.
1 parent 72462b2 commit c21bf40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TraceEvent/Symbols/SymbolPath.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ public static string MicrosoftSymbolServerPath
7070
if (s_MicrosoftSymbolServerPath == null)
7171
{
7272
s_MicrosoftSymbolServerPath = s_MicrosoftSymbolServerPath +
73-
";" + @"SRV*http://msdl.microsoft.com/download/symbols" + // Operatig system Symbols
73+
";" + @"SRV*https://msdl.microsoft.com/download/symbols" + // Operatig system Symbols
7474
";" + @"SRV*https://nuget.smbsrc.net" + // Nuget symbols
75-
";" + @"SRV*http://referencesource.microsoft.com/symbols" + // .NET Runtime desktop symbols
75+
";" + @"SRV*https://referencesource.microsoft.com/symbols" + // .NET Runtime desktop symbols
7676
";" + @"SRV*https://dotnet.myget.org/F/dotnet-core/symbols"; // Pre-release Nuget symbols.
7777
}
7878
return s_MicrosoftSymbolServerPath;

0 commit comments

Comments
 (0)