-
Notifications
You must be signed in to change notification settings - Fork 795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FSharp.Core symbols/pdbs aren't accessible from the Microsoft Symbol Store #7581
Comments
I also checked via the new Nuget Symbol Server and that one failed as well. After further reading that symbol server only supports portable PDBs so it stands to reason that FSharp.Core PDBs wouldn't be available there yet. |
One thing that's confusing to me (and that I'm possible misunderstanding) is that current PDBs are I am probably just a dunce, since looking at this stacktrace from a netcoreapp3.0 app loaded into
Soooo...no actual problem here? Though the line-numbers are missing but that could just be sourcelink? |
Is this still an issue for you? Related to this? #5682 |
This can be closed, embedded PDBs solve this nicely. |
I am unable to retrieve symbols for FSharp.Core via the MS Symbol Store (https://msdl.microsoft.com/download/symbols), which I'm led to believe is the appropriate place due to #294 (comment). I'm attempting to retrieve the symbols using
dotnet symbol
.Repro steps
Provide the steps required to reproduce the problem:
dotnet symbol
global tool (dotnet tool install --global dotnet-symbol --version 1.0.41502
)dotnet symbol '/path/to/fsharp.core.dll'
Expected behavior
The portable PDB for FSharp.Core is downloaded.
Actual behavior
The PDB cannot be found:
Known workarounds
None
Commentary
This might be related to the fact that we don't yet ship portable PDBs, though I'm not certain if the
dotnet symbol
tool is making that assumption.It would be nice to have the PDBs available in the package as well, or as a snupkg, whatever the deployment mechanism of the week is, because then the current community workaround logic for packing PDBs on publish (ie deploying PDBs for diagnostics alongside the deployed application) would 'just work' as well.
Related information
Provide any related information (optional):
The text was updated successfully, but these errors were encountered: