Skip to main content

Adding Ctrl-Click “Go To Definition” support to Visual Studio 2015

So here's how I fixed this.
  1. Save the .vsix file somewhere on your computer
  2. Open the file with Winzip / Winrar or similar (it's just a disguised .zip file so you could change the extension to .zip)
  3. Open the extension.vsixmanifest file in a text editor
  4. Add the following lines inside the <SupportedProducts>...</SupportedProducts> section:
<VisualStudio Version="14.0"> <Edition>Pro</Edition> </VisualStudio>
  1. Update the zip file with the modified file and change it back to a .vsix file.
  2. Double click the .vsix and install.

Ref : https://stackoverflow.com/questions/33301909/adding-ctrl-click-go-to-definition-support-to-visual-studio-2015


Visit - https://marketplace.visualstudio.com/items?itemName=NoahRichards.GoToDefinition
https://marketplace.visualstudio.com/items?itemName=VisualStudioPlatformTeam.ProductivityPowerTools2015

Comments