- I collected the traces with .nettrace from the remote server including .dll and .pdb files
- Uploaded .nettrace file to the Visual Studio Profiler and set the path for the .dll and .pdb files in VS under Debug->Options->Symbols
- Selecting "Generate With Copilot" feature under "Top Insights" in VS Profiler returns errors that profiler was unable to find symbols therefore AI was unable to generate perf reports:
"Symbols failed to load for Autofac.dll. Failed to find symbol file Autofac.pdb
Symbols failed to load for System.Private.CoreLib.dll. Failed to find symbol file System.Private.CoreLib.pdb"

Manually:
- Selecting one of the Hot Paths function names, it opens a new window and a pop up is displayed on the screen looking for symbols, after a few seconds it responds with the error in the log: "Symbols failed to load for Autofac.dll. Failed to find symbol file Autofac.pdb
Symbols failed to load for System.Private.CoreLib.dll. Failed to find symbol file System.Private.CoreLib.pdb
Symbols failed to load for System.Private.CoreLib.dll. Failed to find symbol file System.Private.CoreLib.pdb
Symbols failed to load for System.Private.CoreLib.dll. Failed to find symbol file System.Private.CoreLib.pdb"
- Unable to point to the code where perf issues are because it is unable to find/load symbols
- I tried it many different ways including following Microsoft docs with no luck Any help with this would be greatly appreciated.