0

When I do a "Go To Definition" for a type in the c# code editor, say IDisposable, Visual Studio opens the Reference Source for IDispoable in the Browser: https://referencesource.microsoft.com/#mscorlib/system/idisposable.cs,1f55292c3174123d

How can I stop Visual Studio from opening a browser?

How can I tell VS to open IDisposable in the Object Browser?

citykid
  • 9,916
  • 10
  • 55
  • 91

1 Answers1

0

Visual Studio does not do that by default.

I would guess that you installed an extension (like this one) that does it for you. Uninstall the extension and VS should revert to its default behavior.

Another possibility is that you enabled a feature in Resharper that does a similar thing.

John Koerner
  • 37,428
  • 8
  • 84
  • 134
  • R# is not the cause. Checked all extensions, does not look like any of them could be the reason. I believe my configuration is wrong, but could not find any config that affects the behavior. – citykid Jan 21 '17 at 14:01
  • You could also try launching an [experimental instance](https://msdn.microsoft.com/en-us/library/bb166560.aspx), which will use fresh configuration and see if it still happens there. – John Koerner Jan 21 '17 at 14:06