Traw
Traw

Reputation: 324

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!

Upvotes: 0

Views: 119

Answers (1)

Mr Qian
Mr Qian

Reputation: 23740

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.

Upvotes: 1

Related Questions