Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Navigate to definition "behind" a proxy in Visual Studio 2013

TL;DR;
I would like to know if theres a way to go to the "real" implementation of a method, instead of the "reference" of it.

Long Version
So, for most of us, referencing a asmx/svc web-service is quite a common scenario.

When you do so, VS generates a proxy in the consuming project/s.

We also are usually developing both the client and the service, which put us more often than not in the scenario where you want to check some info about the service method implementation, but when you hit F12, you're taken to the very useless VS generated code.

I would like alter that behavior, and, instead of being referred to the auto-generated code I want the real implementation to show up.

like image 510
Leonardo Avatar asked Nov 10 '22 15:11

Leonardo


1 Answers

You won't be able to achieve that in Visual Studio. But in ReSharper there is "Go to Implementation" command, or Ctrl + Shift + Alt + B.

like image 163
PiotrWolkowski Avatar answered Nov 14 '22 23:11

PiotrWolkowski