Replies: 4 comments 1 reply
-
Usually VS downloads them from Microsoft SymStore when 'Just My Code' is disabled, but there is also a command-line tool for manual downloading: https://learn.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-symbol Powershell / Run as Administrator: > dotnet tool install --global dotnet-symbol
> dotnet-symbol "$(((gcm dotnet).Source) | split-path -parent)\shared\*.dll" --recurse-subdirectories --timeout 20 |
Beta Was this translation helpful? Give feedback.
-
Don't you need to set <PublishReadyToRunEmitSymbols>true</PublishReadyToRunEmitSymbols> to get R2R symbols? |
Beta Was this translation helpful? Give feedback.
-
This is .NET 8 bug, tracked by #96917 and related issues. It will be fixed in future servicing update. |
Beta Was this translation helpful? Give feedback.
-
Run into a lot of missing symbols too (attempted download for 8.0.1 as explained above), specifically was after System.Net.Http.ni.pdb - this and lots of other .ni.'s are also missing from 8.0.0 symbols :( |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I am having issues with .NET 8 (SDK 8.0.101) on Windows in Visual Studio 2022 and no symbols being loaded for many dlls. This means I lack info when e.g. profiling etc. I know this is known issue from back in the old days with .NET Framework and NGEN, but I thought this had been solved and was usable in Visual Studio.
I can't remember or find the information on how to get symbols for these, so my question is how can get this working?
Beta Was this translation helpful? Give feedback.
All reactions