Search code examples
c#.netvisual-studiobotframeworkvisual-studio-debugging

Debugging Microsoft Bot Framework C# source in Visual Studio


Is it possible to step into the Microsoft Bot Framework C# SDK source while debugging in Visual Studio 2017+? Are symbols required, and if so are they available? (I have searched but not yielded much information)

This could make some aspects of bot debugging remarkably easier, so any information is appreciated!


Solution

  • Debugging Microsoft Bot Framework C# source in Visual Studio

    Bot framework is open source and you do not worry about not being able to access internal methods.

    You could download the source from this github link and then you get its pdb file so that you can step into it.

    Just download the source,create a local package with symbols and then we can debug it.