Reputation: 36656
I remember I used to
navigate to pasted stack trace by clicking
ctrl + E + T
is it a resharper utility?
What's the build in equivalent for visual studio 2012?
Upvotes: 24
Views: 8947
Reputation: 512
The stack trace explorer extension does not seem to work with current vscode version, but I found that if I just create a textfile with the stacktrace, and in the terminal type 'cat textfile' then I can Ctrl-click the lines of the stacktrace. (I'm on linux, 'cat' will print the contents of the file).
Upvotes: 1
Reputation: 54801
Visual Studio 2022 now contains Stack Trace Explorer out of the box.
View -> Other Windows -> Stack Trace Explorer
or
Ctrl+E, Ctrl+S
Upvotes: 13
Reputation: 2044
There is an extension Visual Studio 2017 called 'Stack Trace Explorer', you can get it here
Upvotes: 10
Reputation: 97656
The Stack Trace Explorer is a ReSharper feature. There is no equivalent built into Visual Studio. (If there was, why would they take all the time and expense to add the feature to ReSharper?)
Upvotes: 14