Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add debug symbols for .NET 3.5 Debugging in Visual Studio 2013

I have a Unity application and a C# DLL, created by Visual Studio 2013, that I want to debug. I do this by going to DEBUG > Attach to Process inside Visual Studio 2013, and if I choose Native code, I can set breakpoints for C++ code and etc. However, when I choose the option for .NET 3.5, it says that the breakpoint will never be reached as the symbols have not been loaded.

How do I load debug symbols for .NET 3.5 for Visual Studio 2013?

like image 534
Taylor Avatar asked Nov 06 '22 21:11

Taylor


1 Answers

Please have a look at the below MSDN links

https://learn.microsoft.com/en-us/visualstudio/debugger/specify-symbol-dot-pdb-and-source-files-in-the-visual-studio-debugger?view=vs-2017

https://learn.microsoft.com/en-us/visualstudio/debugger/how-to-debug-dotnet-framework-source?view=vs-2017

You can load the symbols from pdf file and making configurations in pdb file you can manage the symbols while debugging the application.

like image 196
VikrantMore Avatar answered Nov 11 '22 07:11

VikrantMore