C# – Share a CS file with 2 different projects using Visual Studio 2010 and Subversion

csvnvisual studio 2010

We are moving from SourceSafe to Subversion as our source control provider… All is going well so far except I can figure out how you "share" a file between more than one project. In sourcesafe you made a link to the file and then added it to your project, then source safe knew that the file was really just one file. How do you do the equivalent with Subversion?

Best Answer

You can add a file as a link within Visual Studio directly.

Doing this means you don't have to worry about how your source control will manage things, so long as the referenced file in in source control - the link is managed by VS.

Related Topic