Share a link to a location in code (source file / line number) in Visual Studio

I am looking for a plugin (maybe a TFS plugin) for Visual Studio 2010, which adds a copy of the uri context menu entry in the code editor and allows you to copy the insert of the file / line number into the chat chat (skype) or email, and, of course, click the link will open the project / file with the correct line number (in an existing instance, if possible, if possible).

I work from home, and it would be nice to be able to easily share code with the team via skype (and sometimes via email).

I googled and didn’t find anything, but it is probably available in a large plugin like Resharper and is not advertised.

+8
tfs visual-studio-2010 share
source share
2 answers

I wrote an extension for this. It is called CodeLink:

https://marketplace.visualstudio.com/items?itemName=AuriRahimzadeh.CodeLinktm

I am looking for testers and reviews. I have only so many solutions with which you can check :)

+2
source share

There is no such extension that exists from what I know.

However, it would not be so difficult to create a VSX that adds an entry to the context menu of the source code, which gets the source control path from the local path using TFS Api, then puts the result on the clipboard.

At the same time, there is no easy way to find a workaround, since I don’t know how to get the source control path from the local path in Visual Studio.

+1
source share

All Articles